forked from Miyamura80/Python-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal_config.yaml
More file actions
42 lines (39 loc) · 1.08 KB
/
global_config.yaml
File metadata and controls
42 lines (39 loc) · 1.08 KB
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
model_name: gemini/gemini-2.0-flash
dot_global_config_health_check: true
########################################################
# LLMs
########################################################
default_llm:
default_model: gemini/gemini-2.0-flash
default_temperature: 0.5
default_max_tokens: 100000
llm_config:
cache_enabled: false
retry:
max_attempts: 3
min_wait_seconds: 1
max_wait_seconds: 5
########################################################
# Debugging
########################################################
logging:
verbose: true
format:
show_time: false
show_session_id: true
location:
enabled: true
show_file: true
show_function: true
show_line: true
# Configure which log levels show location information
show_for_info: false
show_for_debug: true
show_for_warning: true
show_for_error: true
levels:
debug: false # Suppress all debug logs
info: true # Show info logs
warning: true # Show warning logs
error: true # Show error logs
critical: true # Show critical logs