DeepSeekSelfTool/config.py

70 lines
1.9 KiB
Python
Raw Normal View History

# API配置
2025-02-10 20:22:23 +08:00
API_TYPE="deepseek" # 可选值: "deepseek" 或 "ollama"
# DeepSeek API配置
2025-02-10 20:22:23 +08:00
# 官方默认API地址: "https://api.deepseek.com/v1/chat/completions"
2025-02-10 20:43:09 +08:00
# 硅基流动https://api.siliconflow.cn/v1/chat/completions
2025-02-10 20:22:23 +08:00
DEEPSEEK_API_URL=""
2025-02-01 16:41:47 +08:00
DEEPSEEK_API_KEY=""
2025-02-10 20:22:23 +08:00
# DeepSeek模型名称官方默认模型: "deepseek-chat"
# 硅基流动deepseek-ai/DeepSeek-V3
DEEPSEEK_MODEL=""
# Ollama API配置
OLLAMA_API_URL="http://localhost:11434/api/chat" # Ollama API地址
2025-02-04 17:49:47 +08:00
OLLAMA_MODEL="qwen2.5-coder:14b" # Ollama模型名称
2025-02-18 08:21:05 +08:00
# 主题配色方案
2025-02-01 16:41:47 +08:00
# 主题配色方案
THEMES = {
"深色主题": {
"main_bg": "#1e1e1e",
"secondary_bg": "#2d2d2d",
"text_color": "#ffffff",
"accent_color": "#007acc",
"border_color": "#404040",
"button_hover": "#005999",
"button_pressed": "#004c80"
},
"浅色主题": {
"main_bg": "#f5f5f5",
"secondary_bg": "#ffffff",
"text_color": "#333333",
"accent_color": "#2196f3",
"border_color": "#e0e0e0",
"button_hover": "#1976d2",
"button_pressed": "#1565c0"
2025-02-18 08:21:05 +08:00
},
"科技感主题": {
"main_bg": "#0a192f",
"secondary_bg": "#172a45",
"text_color": "#ccd6f6",
"accent_color": "#64ffda",
"border_color": "#233554",
"button_hover": "#52dbbf",
"button_pressed": "#3ebca6"
},
"黑客粉嫩主题": {
"main_bg": "#FFEDED",
"secondary_bg": "#FFD9D9",
"text_color": "#222222",
"accent_color": "#FF1493",
"border_color": "#FF9AA2",
"button_hover": "#FF007F",
"button_pressed": "#DB7093"
},
"护眼主题": {
"main_bg": "#e0f0e0",
"secondary_bg": "#f0f8f0",
"text_color": "#333333",
"accent_color": "#4caf50",
"border_color": "#c8e6c9",
"button_hover": "#388e3c",
"button_pressed": "#2e7d32"
2025-02-01 16:41:47 +08:00
}
2025-02-18 08:21:05 +08:00
2025-02-10 20:43:09 +08:00
}