-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy path.env.example
More file actions
23 lines (16 loc) · 717 Bytes
/
Copy path.env.example
File metadata and controls
23 lines (16 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# LLM Consortium Environment Configuration
# Copy this file to .env and fill in your API keys
# OpenAI API Key (for embeddings and models)
OPENAI_API_KEY=your_openai_api_key_here
# Chutes API Token (for embeddings)
CHUTES_API_TOKEN=your_chutes_api_token_here
# Optional: Anthropic API Key (if using Claude models)
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Optional: Google API Key (if using Gemini models)
GOOGLE_API_KEY=your_google_api_key_here
# Optional: OpenRouter API Key (if using OpenRouter models)
OPENROUTER_API_KEY=your_openrouter_api_key_here
# Database configuration
LLM_CONSORTIUM_DB_PATH=~/.config/io.datasette.llm/consortium.db
# Logging level (DEBUG, INFO, WARNING, ERROR)
LOG_LEVEL=INFO