-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathdefault_config.py
More file actions
34 lines (28 loc) · 1.13 KB
/
default_config.py
File metadata and controls
34 lines (28 loc) · 1.13 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
import os
DEFAULT_CONFIG = {
"project_dir": os.path.abspath(os.path.join(os.path.dirname(__file__), ".")),
"data_dir": "/Users/yluo/Documents/Code/ScAI/FR1-data",
# Output settings
"save_report": True,
"report_type": "pdf", # either 'pdf' or 'md'
"report_dir": os.path.join(
os.path.abspath(os.path.join(os.path.dirname(__file__), ".")), "reports"
),
"send_report_to_email": False,
# LLM settings
"llm_provider": "qwen",
"deep_think_llm": "qwen-plus",
"quick_think_llm": "qwen-turbo",
# For ChatGPT, see https://platform.openai.com/docs/guides/tools-web-search?api-mode=chat
"search_llm": "qwen-plus-2025-04-28",
"backend_url": "https://dashscope.aliyuncs.com/compatible-mode/v1",
"search_backend_url": "https://dashscope.aliyuncs.com/compatible-mode/v1",
"api_key_env_name": "DASHSCOPE_API_KEY",
"max_tokens": 4096, # Maximum tokens for LLM responses
# Debate and discussion settings
"max_debate_rounds": 1,
"max_risk_discuss_rounds": 1,
"max_recur_limit": 200,
# Language settings
"language": "zh", # 支持 'zh' 或 'en'
}