-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
40 lines (40 loc) · 802 Bytes
/
Copy pathsettings.json
File metadata and controls
40 lines (40 loc) · 802 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
{
"app": {
"name": "Knowledge Base System",
"version": "2.0.0",
"debug": false,
"host": "0.0.0.0",
"port": 8000
},
"database": {
"type": "sqlite",
"path": "data_storage/knowledge_base.db",
"pool_size": 5,
"echo": false
},
"vector_store": {
"type": "faiss",
"path": "data_storage/vectors",
"embedding_model": "sentence-transformers/all-MiniLM-L6-v2"
},
"llm": {
"provider": "groq",
"model": "llama-3.3-70b-versatile",
"temperature": 0.7,
"max_tokens": 4096
},
"agent": {
"max_iterations": 10,
"timeout": 300,
"tools": ["wikipedia", "arxiv", "duckduckgo"]
},
"api": {
"cors_enabled": true,
"cors_origins": ["*"],
"rate_limit": 100
},
"workers": {
"count": 4,
"queue_size": 100
}
}