Files
aiagents-stock/model_config.py
T
wsx180808 dbc6b5b359 1.修复docker运行无法打开页面问题 (#6)
2.支持下载DM文件
3.支持硅基流动,阿里百炼模型
2025-10-30 08:10:15 +08:00

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": "阶跃星辰(硅基流动)"
}