-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env.example
More file actions
115 lines (99 loc) · 5.41 KB
/
.env.example
File metadata and controls
115 lines (99 loc) · 5.41 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# SpectrumLab Environment Configuration
# Copy this file to .env and fill in your actual API keys and configurations
# =============================================================================
# DeepSeek API Configuration
# =============================================================================
DEEPSEEK_API_KEY=your_deepseek_api_key_here
DEEPSEEK_BASE_URL=https://api.deepseek.com
DEEPSEEK_MODEL_NAME=deepseek-chat
# =============================================================================
# GPT-4o API Configuration
# =============================================================================
GPT4O_API_KEY=your_openai_api_key_here
GPT4O_BASE_URL=https://api.openai.com/v1
GPT4O_MODEL_NAME=gpt-4o
# =============================================================================
# InternVL API Configuration
# =============================================================================
INTERNVL_API_KEY=your_internvl_api_key_here
INTERNVL_BASE_URL=https://chat.intern-ai.org.cn/api/v1/
INTERNVL_MODEL_NAME=internvl3-latest
# =============================================================================
# Claude API Configuration
# =============================================================================
CLAUDE_API_KEY=your_anthropic_api_key_here
CLAUDE_BASE_URL=https://api.anthropic.com
CLAUDE_SONNET_3_5=anthropic/claude-3.5-sonnet
CLAUDE_OPUS_4=claude-opus-4-20250514
CLAUDE_HAIKU_3_5=claude-3-5-haiku-20241022
CLAUDE_SONNET_4=anthropic/claude-sonnet-4
# =============================================================================
# GPT-4.1 and GPT-4-Vision Configuration
# =============================================================================
GPT4_1_API_KEY=your_gpt4_1_api_key_here
GPT4_1_BASE_URL=https://api.openai.com
GPT4_1=gpt-4.1-2025-04-14
GPT4_VISION_API_KEY=your_gpt4_vision_api_key_here
GPT4_VISION_BASE_URL=https://api.openai.com
GPT4_VISION=gpt-4-vision-preview
# =============================================================================
# Grok-2-Vision Configuration
# =============================================================================
GROK_2_VISION_API_KEY=your_grok_api_key_here
GROK_2_VISION_BASE_URL=https://api.x.ai
GROK_2_VISION=x-ai/grok-2-vision-1212
# =============================================================================
# Qwen-VL Configuration
# =============================================================================
QWEN_VL_API_KEY=your_qwen_api_key_here
QWEN_VL_BASE_URL=https://dashscope.aliyuncs.com
QWEN_VL=qwen-vl-max
# =============================================================================
# Qwen-2.5-VL-32B Configuration
# =============================================================================
QWEN_2_5_VL_32B_API_KEY=your_qwen_2_5_vl_32b_api_key_here
QWEN_2_5_VL_32B_BASE_URL=https://dashscope.aliyuncs.com
QWEN_2_5_VL_32B=Qwen/Qwen2.5-VL-32B-Instruct
# =============================================================================
# Qwen-2.5-VL-72B Configuration
# =============================================================================
QWEN_2_5_VL_72B_API_KEY=your_qwen_2_5_vl_72b_api_key_here
QWEN_2_5_VL_72B_BASE_URL=https://dashscope.aliyuncs.com
QWEN_2_5_VL_72B=Qwen/Qwen2.5-VL-72B-Instruct
# =============================================================================
# DeepSeek-VL-2 Configuration
# =============================================================================
DEEPSEEK_VL_2_API_KEY=your_deepseek_vl_2_api_key_here
DEEPSEEK_VL_2_BASE_URL=https://api.deepseek.com
DEEPSEEK_VL_2=deepseek-ai/deepseek-vl2
# =============================================================================
# Llama-Vision-11B Configuration
# =============================================================================
LLAMA_VISION_11B_API_KEY=your_llama_vision_11b_api_key_here
LLAMA_VISION_11B_BASE_URL=https://api.meta.com
LLAMA_VISION_11B=llama-3.2-11b-vision-instruct
# =============================================================================
# Llama-Vision-90B Configuration
# =============================================================================
LLAMA_VISION_90B_API_KEY=your_llama_vision_90b_api_key_here
LLAMA_VISION_90B_BASE_URL=https://api.meta.com
LLAMA_VISION_90B=meta-llama/llama-3.2-90b-vision-instruct
# =============================================================================
# Doubao-1.5-Vision-Pro Configuration
# =============================================================================
DOUBAO_1_5_VISION_PRO_API_KEY=your_doubao_vision_pro_api_key_here
DOUBAO_1_5_VISION_PRO_BASE_URL=https://ark.cn-beijing.volces.com
DOUBAO_1_5_VISION_PRO=doubao-1-5-vision-pro-250328
# =============================================================================
# Doubao-1.5-Vision-Pro-Thinking Configuration
# =============================================================================
DOUBAO_1_5_VISION_PRO_THINKING_API_KEY=your_doubao_vision_pro_thinking_api_key_here
DOUBAO_1_5_VISION_PRO_THINKING_BASE_URL=https://ark.cn-beijing.volces.com
DOUBAO_1_5_VISION_PRO_THINKING=doubao-1.5-thinking-vision-pro-250428
# =============================================================================
# Instructions
# =============================================================================
# 1. Copy this file to .env: cp .env.example .env
# 2. Replace all placeholder values (your_*_here) with your actual API keys
# 3. Configure the base URLs according to your API providers
# 4. Make sure to keep your .env file secure and never commit it to version control