blob: a402991be9bab8b2ef5a3eae4b0adf2de416531d [file] [log] [blame]
iomodof1ddefe2025-07-28 09:02:05 +04001# Staff MVP Configuration with Fake LLM for Testing
2# This config uses fake LLM responses for testing without API keys
3
4openai:
5 api_key: "fake-key" # Not used by fake provider
6 base_url: "fake://test"
7 timeout: "5s"
8
9github:
10 token: "fake-github-token" # Replace with real token for actual GitHub operations
11 owner: "shota"
12 repo: "staff"
13
14git:
iomodoa53240a2025-07-30 17:33:35 +040015 repo_path: "/Users/shota/github/staff/"
iomodof1ddefe2025-07-28 09:02:05 +040016 branch_prefix: "task/"
17 commit_message_template: "Task {task_id}: {task_title} by {agent_name}"
18 pr_template: |
19 ## Task: {task_title}
20
21 **Priority:** {priority}
22 **Task ID:** {task_id}
23 **Agent:** {agent_name}
24
25 ### Description
26 {task_description}
27
28 ### Solution
29 {solution}
30
31 ### Files Changed
32 {files_changed}
33
34 ---
35 *This PR was automatically generated by Staff AI Agent System (Testing Mode)*
36
37# Fake LLM configuration for testing
38agents:
39 - name: "ceo"
40 role: "CEO"
41 model: "fake-gpt-4"
42 temperature: 0.3
43 max_tokens: 4000
44 system_prompt_file: "/Users/shota/github/staff/operations/agents/ceo/system.md"
45
46tasks:
47 storage_path: "/Users/shota/github/staff/operations/tasks/"
48 completed_path: "/Users/shota/github/staff/operations/completed/"