-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcosift.json.example
More file actions
50 lines (43 loc) · 848 Bytes
/
cosift.json.example
File metadata and controls
50 lines (43 loc) · 848 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
47
48
49
50
{
"data_dir": "./cosift-data",
"server": {
"addr": "127.0.0.1:7777"
},
"crawler": {
"user_agent": "CosiftBot/0.1 (+https://github.com/yourname/cosift)",
"max_concurrent": 8,
"per_host_delay_ms": 1000,
"max_body_bytes": 5242880,
"max_depth": 2,
"respect_robots": true,
"include_domains": [],
"exclude_domains": []
},
"embeddings": {
"url": "",
"model": "text-embedding-3-small",
"dim": 1536
},
"chat": {
"url": "",
"model": "gpt-4o-mini"
},
"rerank": {
"enabled": true,
"url": "",
"api_key": "",
"model": "",
"candidate_k": 20
},
"federation": {
"duckduckgo_html": false,
"searxng_url": "",
"pilot": false
},
"defaults": {
"retriever": "",
"expand": false,
"research_strategy": "",
"research_synth_k": 0
}
}