-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (26 loc) · 898 Bytes
/
.env.example
File metadata and controls
36 lines (26 loc) · 898 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
31
32
33
34
35
36
# Integration Test API Keys
# Copy this file to .env and fill in your API keys
# Only needed for running integration tests (pytest -m integration)
# OpenAI
OPENAI_API_KEY=your_openai_key_here
# Anthropic (Claude)
ANTHROPIC_API_KEY=your_anthropic_key_here
# Google (Gemini)
GOOGLE_API_KEY=your_google_key_here
# Mistral
MISTRAL_API_KEY=your_mistral_key_here
# Cohere
COHERE_API_KEY=your_cohere_key_here
# DeepSeek
DEEPSEEK_API_KEY=your_deepseek_key_here
# Qwen (Alibaba Cloud)
ALIBABA_API_KEY=your_alibaba_key_here
# OpenRouter (OpenAI-compatible)
OPENROUTER_API_KEY=your_openrouter_key_here
# sciCORE (OpenAI-compatible)
SCICORE_API_KEY=your_scicore_key_here
# Optional: Customize sciCORE settings
# SCICORE_BASE_URL=https://api.scicore.unibas.ch/v1
# SCICORE_MODEL=gpt-4
# Note: You don't need ALL keys - only for providers you want to test
# Tests will be skipped if API key is not set