-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathagentstack.config.json
More file actions
46 lines (46 loc) · 864 Bytes
/
agentstack.config.json
File metadata and controls
46 lines (46 loc) · 864 Bytes
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
{
"version": "1.0.0",
"memory": {
"path": "./data/agentstack.db",
"defaultNamespace": "default",
"vectorSearch": {
"enabled": true,
"provider": "openai",
"model": "text-embedding-3-small"
}
},
"providers": {
"default": "anthropic",
"openai": {
"apiKey": "${OPENAI_API_KEY}"
}
},
"agents": {
"maxConcurrent": 5,
"defaultTimeout": 300
},
"github": {
"enabled": false
},
"plugins": {
"enabled": true,
"directory": "./plugins"
},
"mcp": {
"transport": "stdio"
},
"hooks": {
"sessionStart": true,
"sessionEnd": true,
"preTask": true,
"postTask": true
},
"web": {
"enabled": true,
"port": 3001,
"host": "localhost",
"cors": {
"origins": ["http://localhost:5174", "http://localhost:5173", "http://localhost:3000"]
}
}
}