forked from Monstermn96/gpt-pilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample-config.json
73 lines (73 loc) · 1.36 KB
/
example-config.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"llm": {
"openai": {
"base_url": null,
"api_key": null,
"connect_timeout": 60.0,
"read_timeout": 20.0
},
"anthropic": {
"base_url": "https://api.anthropic.com",
"api_key": null,
"connect_timeout": 60.0,
"read_timeout": 20.0
},
"groq": {
"base_url": null,
"api_key": null,
"connect_timeout": 60.0,
"read_timeout": 20.0
}
},
"agent": {
"default": {
"provider": "openai",
"model": "gpt-4",
"temperature": 0.7
},
"files": {
"provider": "openai",
"model": "gpt-3.5-turbo",
"temperature": 0.7
}
},
"log": {
"level": "DEBUG",
"format": "%(asctime)s %(levelname)s [%(name)s] %(message)s",
"output": "pythagora.log"
},
"db": {
"url": "sqlite+aiosqlite:///pythagora.db",
"debug_sql": false
},
"ui": {
"type": "plain"
},
"fs": {
"type": "local",
"workspace_root": "workspace",
"ignore_paths": [
".git",
".gpt-pilot",
".idea",
".vscode",
".next",
".DS_Store",
"__pycache__",
"site-packages",
"node_modules",
"package-lock.json",
"venv",
"dist",
"build",
"target",
"*.min.js",
"*.min.css",
"*.svg",
"*.csv",
"*.log",
"go.sum"
],
"ignore_size_threshold": 50000
}
}