dbc6b5b359
2.支持下载DM文件 3.支持硅基流动,阿里百炼模型
24 lines
1.0 KiB
Python
24 lines
1.0 KiB
Python
"""
|
|
模型配置文件
|
|
包含所有可用的AI模型选项
|
|
"""
|
|
|
|
model_options = {
|
|
"deepseek-chat": "DeepSeek Chat (默认)",
|
|
"deepseek-reasoner": "DeepSeek Reasoner (推理增强)",
|
|
"qwen-plus": "qwen-plus (阿里百炼)",
|
|
"qwen-plus-latest": "qwen-plus-latest (阿里百炼)",
|
|
"qwen-flash": "qwen-flash (阿里百炼)",
|
|
"qwen-turbo": "qwen-turbo (阿里百炼)",
|
|
"qwen3-max": "qwen-max (阿里百炼)",
|
|
"qwen-long": "qwen-long (阿里百炼)",
|
|
"deepseek-ai/DeepSeek-R1-0528-Qwen3-8B": "DeepSeek-R1 免费(硅基流动)",
|
|
"Qwen/Qwen2.5-7B-Instruct": "Qwen 免费(硅基流动)",
|
|
"Pro/deepseek-ai/DeepSeek-V3.1-Terminus": "DeepSeek-V3.1-Terminus (硅基流动)",
|
|
"deepseek-ai/DeepSeek-R1": "DeepSeek-R1 (硅基流动)",
|
|
"Qwen/Qwen3-235B-A22B-Thinking-2507": "Qwen3-235B (硅基流动)",
|
|
"zai-org/GLM-4.6": "智谱(硅基流动)",
|
|
"moonshotai/Kimi-K2-Instruct-0905": "Kimi (硅基流动)",
|
|
"Ring-1T": "蚂蚁百灵 (硅基流动)",
|
|
"step3": "阶跃星辰(硅基流动)"
|
|
} |