femtowin commited on
Commit
026389b
·
1 Parent(s): 4666d2e

config.yaml

Browse files
Files changed (1) hide show
  1. config/config.yaml +48 -0
config/config.yaml ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ models:
2
+ default:
3
+ api_type: "azure"
4
+ api_key: ""
5
+ base_url: ""
6
+ api_version: "2024-06-01"
7
+ model: "gpt-4o"
8
+ temperature: 0.7
9
+ max_tokens: 4000
10
+ vision_enabled: false
11
+
12
+ gpt-4o:
13
+ api_type: "azure"
14
+ api_key: ""
15
+ base_url: ""
16
+ api_version: "2024-06-01"
17
+ model: "gpt-4o"
18
+ temperature: 0.0
19
+ max_tokens: 4000
20
+ vision_enabled: false
21
+
22
+ gpt-4o-mini:
23
+ api_type: "azure"
24
+ api_key: ""
25
+ base_url: ""
26
+ api_version: "2024-06-01"
27
+ model: "gpt-4o-mini"
28
+ temperature: 0.1
29
+ max_tokens: 4000
30
+ vision_enabled: false
31
+
32
+ llm:
33
+ api_type: "azure"
34
+ api_key: ""
35
+ base_url: ""
36
+ api_version: "2024-06-01"
37
+ model: "gpt-4o"
38
+ temperature: 0.7
39
+ max_tokens: 4000
40
+ vision_enabled: false
41
+
42
+ python_env:
43
+ type: "local"
44
+ verbose: false
45
+
46
+ system:
47
+ log_level: "INFO"
48
+ max_retries: 3