-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
42 lines (34 loc) · 939 Bytes
/
Copy pathconfig.json
File metadata and controls
42 lines (34 loc) · 939 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
{
"system_instructions": "You are a helpful AI assistant with access to document search and web APIs. Use your tools when needed to provide accurate information.",
"llm": {
"provider": "ollama",
"temperature": 0.7,
"max_tokens": 1000,
"timeout": 60,
"ollama_url": "http://localhost:11434",
"ollama_model": "llama3:latest",
"openai_api_key": null,
"openai_model": "gpt-3.5-turbo",
"deepseek_api_key": null,
"deepseek_url": "https://api.deepseek.com",
"deepseek_model": "deepseek-chat"
},
"memory": {
"max_token_limit": 2000
},
"vector_store": {
"db_path": "./data/chroma_db",
"collection_name": "documents",
"embedding_model": "all-MiniLM-L6-v2",
"chunk_size": 1000,
"chunk_overlap": 200
},
"retrieval": {
"max_results": 5,
"similarity_threshold": 0.7
},
"http": {
"timeout": 30,
"retry_attempts": 3
}
}