blob: 387ba9675bc48573978a8bcf483d9506255bdf06 [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:
15 branch_prefix: "task/"
16 commit_message_template: "Task {task_id}: {task_title} by {agent_name}"
17 pr_template: |
18 ## Task: {task_title}
19
20 **Priority:** {priority}
21 **Task ID:** {task_id}
22 **Agent:** {agent_name}
23
24 ### Description
25 {task_description}
26
27 ### Solution
28 {solution}
29
30 ### Files Changed
31 {files_changed}
32
33 ---
34 *This PR was automatically generated by Staff AI Agent System (Testing Mode)*
35
36# Fake LLM configuration for testing
37agents:
38 - name: "ceo"
39 role: "CEO"
40 model: "fake-gpt-4"
41 temperature: 0.3
42 max_tokens: 4000
43 system_prompt_file: "/Users/shota/github/staff/operations/agents/ceo/system.md"
44
45tasks:
46 storage_path: "/Users/shota/github/staff/operations/tasks/"
47 completed_path: "/Users/shota/github/staff/operations/completed/"