-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.template.json
57 lines (57 loc) · 1.11 KB
/
config.template.json
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
{
"datavoids_explorer_ui": {
"tasks_manager_url": "http://localhost:5000"
},
"tasks_manager": {
"port": "5000"
},
"google_search_crawler": {
"interval": 1000,
"num_results": 10,
"google_search_api": {
"key": "<SECRET>",
"cse_id": "<SECRET>"
}
},
"content_labeler": {
"interval": 1000,
"labeler": "chat_gpt"
},
"content_fetcher": {
"interval": 1000,
"always_use_selenium": false,
"headless": true,
"timeout": 30,
"ignore_extensions": [
"pdf",
"xsls",
"txt"
]
},
"databases": {
"datavoids_explorer": {
"name": "datavoids_explorer",
"user": "postgres",
"password": "<SECRET>",
"host": "localhost",
"port": "5432"
},
"datavoids_simulator_work": {
"name": "mis_sim_work",
"user": "postgres",
"password": "<SECRET>",
"host": "localhost",
"port": "5432"
}
},
"APIs": {
"open_ai": {
"key": "<SECRET>",
"model": "gpt-3.5-turbo",
"target_tokens": 4000
},
"google_sheets_api": {
"credentials_file": "gsa_cred.json"
}
}
}