-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetting.py
More file actions
20 lines (16 loc) · 727 Bytes
/
Copy pathsetting.py
File metadata and controls
20 lines (16 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
DEF_PROJECT_NAME = 'default_project'
DEF_CONFIG_RULES = "config_rules.yml"
DEF_CONFIG_OPENAI = 'config_verifier.yml'
DEF_CONFIG_MODELS = "config_models.yml"
DEF_CONFIG_AUDITOR = "config_auditor.yml"
DEF_EXCLUDES_KEYS = ['temp/compiled', '/vendor/', 'node_modules', '.well-known']
DEF_EXCLUDES_EXT = ['.git', '.svn', '.idea', '__pycache__', '.pyc', '.css',
'.tmp', '.exe', '.bin', '.dll', '.elf',
'.zip', '.rar', '.7z', '.gz', '.bz2', '.tar',
'.jpg', '.jpeg', '.png', '.gif', '.bmp', '.tiff', '.tif', '.svg'
]
# 默认调用供应商
DEF_PROVIDER = 'qwen'
# 默认调用模型
# DEF_MODEL_NAME = 'qwen-coder-plus-latest'
DEF_MODEL_NAMES = ["qwen-turbo"]