-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
30 lines (24 loc) · 927 Bytes
/
.env.example
File metadata and controls
30 lines (24 loc) · 927 Bytes
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
# GitHub Token (需要repo和user权限)
GITHUB_TOKEN=your_github_token_here
# LLM API配置 - 选择一个AI服务提供商配置
# ========== DeepSeek ==========
OPENAI_API_KEY=your_deepseek_api_key_here
OPENAI_BASE_URL=https://api.deepseek.com/v1
OPENAI_MODEL=deepseek-chat
# ========== 智谱 GLM ==========
# OPENAI_API_KEY=your_zhipu_api_key_here
# OPENAI_BASE_URL=https://open.bigmodel.cn/api/paas/v4
# OPENAI_MODEL=glm-4-flash
# ========== 通义千问 ==========
# OPENAI_API_KEY=your_qwen_api_key_here
# OPENAI_BASE_URL=https://dashscope.aliyuncs.com/compatible-mode/v1
# OPENAI_MODEL=qwen-plus
# ========== OpenAI ==========
# OPENAI_API_KEY=your_openai_api_key_here
# OPENAI_BASE_URL=https://api.openai.com/v1
# OPENAI_MODEL=gpt-4o-mini
# ========== 其他兼容 OpenAI API 的服务 ==========
# Azure OpenAI, 本地 Ollama 等
# 仓库名称 (用于提交)
REPO_OWNER=your_username
REPO_NAME=your_repo_name