-
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) · 997 Bytes
/
.env.example
File metadata and controls
36 lines (26 loc) · 997 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
# Environment variables for DistributedFunSearch
# Copy this file to .env and fill in your API keys
# OpenAI API
OPENAI_API_KEY=sk-your-openai-api-key-here
# Anthropic Claude API
ANTHROPIC_API_KEY=sk-ant-your-anthropic-api-key-here
# Together AI API
TOGETHER_API_KEY=your-together-ai-key-here
# Azure OpenAI
AZURE_OPENAI_API_KEY=your-azure-api-key-here
AZURE_OPENAI_ENDPOINT=https://your-resource-name.openai.azure.com/
AZURE_OPENAI_API_VERSION=2023-07-01-preview
# OpenRouter (unified API for multiple providers)
OPENROUTER_API_KEY=sk-or-your-openrouter-key-here
# Replicate API
REPLICATE_API_TOKEN=r8_your-replicate-token-here
# Hugging Face API
HUGGINGFACE_API_KEY=hf_your-huggingface-token-here
# Custom vLLM Server (local)
# If running vLLM locally, set the base URL here
# VLLM_API_BASE=http://localhost:8000/v1
# LiteLLM Configuration
# Set to "1" to enable debug logging from LiteLLM
# LITELLM_LOG=0
# Set custom timeout (in seconds) for API calls
# LITELLM_REQUEST_TIMEOUT=600