-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomplete_agent_config.json
More file actions
80 lines (80 loc) · 1.89 KB
/
complete_agent_config.json
File metadata and controls
80 lines (80 loc) · 1.89 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"engines": [
{
"name": "openai",
"engine": "openai",
"connection": {
"protocol": "https",
"hostname": "api.openai.com",
"port": 443,
"request_path": "/v1/chat/completions"
},
"parameters": {
"bearer_token": "${OPENAI_API_KEY}",
"max_tokens": 4000,
"modelName": "gpt-4o",
"temperature": 0.1
}
},
{
"name": "anthropic",
"engine": "anthropic",
"connection": {
"protocol": "https",
"hostname": "api.anthropic.com",
"port": 443,
"request_path": "/v1/messages"
},
"parameters": {
"bearer_token": "${ANTHROPIC_API_KEY}",
"max_tokens": 4000,
"modelName": "claude-sonnet-4-20250514",
"temperature": 0.1
}
},
{
"name": "gemini",
"engine": "gemini",
"connection": {
"protocol": "https",
"hostname": "generativelanguage.googleapis.com",
"port": 443,
"request_path": "/v1beta/models/gemini-pro:generateContent"
},
"parameters": {
"bearer_token": "${GEMINI_API_KEY}",
"max_tokens": 4000,
"modelName": "gemini-pro",
"temperature": 0.1
}
}
],
"agent": {
"reasoning_engine": "anthropic",
"action_engine": "anthropic",
"reflection_engine": "anthropic",
"memory_database": "sqlite://./agent_memory.db",
"tools": {
"file_operations": true,
"shell_commands": false,
"rust_compiler": true,
"git_operations": false,
"allowed_paths": [
"./",
"./src",
"./examples",
"./tests",
"./crates"
],
"allowed_commands": [
"cargo build",
"cargo test",
"cargo check",
"cargo clippy"
]
},
"config_path": "./anthropic_config.json",
"max_iterations": 50,
"timeout_seconds": 1800
}
}