-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.config.json
More file actions
64 lines (64 loc) · 1.59 KB
/
example.config.json
File metadata and controls
64 lines (64 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"provider_name": "openai-compatible",
"model_id": "kimi-k2.5",
"base_url": "https://api.moonshot.cn/v1",
"api_key_env": "CODINGCLAW_API_KEY",
"supports_tools": true,
"supports_reasoning": false,
"compat_flags": {
"supports_developer_role": false,
"supports_reasoning_effort": false
},
"context": {
"enable_smart_workspace_context": true,
"history_char_budget": 6000,
"rule_summary_char_budget": 900,
"model_summary_char_budget": 600,
"model_summary_trigger_chars": 16000,
"recent_messages_to_keep": 4,
"compress_tool_outputs": true,
"tool_output_char_budget": 600,
"max_prompt_tokens": 8000,
"target_prompt_tokens": 6500,
"workspace_context_char_budget": 1200,
"rag_char_budget": 1200,
"rag_max_hits": 2,
"skill_prompt_char_budget": 800
},
"rag": {
"enabled": true,
"provider": "chroma",
"collection_workspace": "workspace",
"collection_user_kb": "user_kb",
"chunk_size": 800,
"chunk_overlap": 120,
"top_k": 4,
"min_score": 0.2,
"embedding_provider": "hash"
},
"export": {
"directory_name": "exports",
"include_events": true
},
"github": {
"enabled": false,
"api_base": "https://api.github.com",
"token_env": "CODINGCLAW_GITHUB_TOKEN",
"default_owner": "",
"default_repo": ""
},
"mcp_servers": [
{
"name": "github",
"command": [
"python",
"examples/mcp/github_server.py",
"https://api.github.com",
"CODINGCLAW_GITHUB_TOKEN",
"your-owner",
"your-repo"
],
"enabled": false
}
]
}