Upload _env
Browse files
_env
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# API for Google Search (recommend)
|
| 2 |
+
SERPER_API_KEY=9648c2b45230cfd319e6cb8236b6d6659d51e0af
|
| 3 |
+
SERPER_BASE_URL="https://google.serper.dev"
|
| 4 |
+
|
| 5 |
+
# API for Web Scraping (recommend)
|
| 6 |
+
JINA_API_KEY=jina_0f8c317abbb245feb1fb3e9a597a96bcXrs4837LDZ8Rk7IXpaBDAGsvkl-r
|
| 7 |
+
JINA_BASE_URL="https://r.jina.ai"
|
| 8 |
+
|
| 9 |
+
# API for Linux Sandbox (recommend)
|
| 10 |
+
E2B_API_KEY=e2b_926a953be98b327afb6535da173ef37854e88263
|
| 11 |
+
|
| 12 |
+
# API for LLM-as-Judge (for benchmark testing)
|
| 13 |
+
OPENAI_API_KEY=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
|
| 14 |
+
OPENAI_BASE_URL=https://openrouter.ai/api/v1
|
| 15 |
+
|
| 16 |
+
# API for Open-Source Audio Transcription Tool (for benchmark testing)
|
| 17 |
+
WHISPER_MODEL_NAME="openai/whisper-large-v3-turbo"
|
| 18 |
+
WHISPER_API_KEY=your_whisper_key
|
| 19 |
+
WHISPER_BASE_URL="https://your_whisper_base_url/v1"
|
| 20 |
+
|
| 21 |
+
# API for Open-Source VQA Tool (for benchmark testing)
|
| 22 |
+
VISION_MODEL_NAME="Qwen/Qwen2.5-VL-72B-Instruct"
|
| 23 |
+
VISION_API_KEY=your_vision_key
|
| 24 |
+
VISION_BASE_URL="https://your_vision_base_url/v1/chat/completions"
|
| 25 |
+
|
| 26 |
+
# API for Open-Source Reasoning Tool (for benchmark testing)
|
| 27 |
+
REASONING_MODEL_NAME="Qwen/Qwen3-235B-A22B-Thinking-2507"
|
| 28 |
+
REASONING_API_KEY=your_reasoning_key
|
| 29 |
+
REASONING_BASE_URL="https://your_reasoning_base_url/v1/chat/completions"
|
| 30 |
+
|
| 31 |
+
# API for Claude Sonnet 3.7 as Commercial Tools (optional)
|
| 32 |
+
ANTHROPIC_API_KEY=your_anthropic_key
|
| 33 |
+
ANTHROPIC_BASE_URL=https://api.anthropic.com
|
| 34 |
+
|
| 35 |
+
# API for Sogou Search (optional)
|
| 36 |
+
TENCENTCLOUD_SECRET_ID=your_tencent_cloud_secret_id
|
| 37 |
+
TENCENTCLOUD_SECRET_KEY=your_tencent_cloud_secret_key
|
| 38 |
+
|
| 39 |
+
# API for Summary LLM (optional)
|
| 40 |
+
SUMMARY_LLM_BASE_URL="https://your_summary_llm_base_url/v1/chat/completions"
|
| 41 |
+
SUMMARY_LLM_MODEL_NAME=your_summary_llm_model_name
|
| 42 |
+
SUMMARY_LLM_API_KEY=your_summary_llm_api_key
|
| 43 |
+
|