-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (34 loc) · 1.97 KB
/
.env.example
File metadata and controls
40 lines (34 loc) · 1.97 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
# ============================================
# Chatter Copilot Configuration
# ============================================
# Application Settings
DEBUG=false
APP_NAME="Chatter Copilot"
# ============================================
# AI API Keys
# ============================================
ANTHROPIC_API_KEY="your_anthropic_api_key_here" # Required: For recommendations. Format: sk-ant-api03-...
OPENAI_API_KEY="your_openai_api_key_here" # Optional: Alternative LLM. Format: sk-proj-...
# ============================================
# OCR - Google Cloud Vision
# ============================================
# Option 1: Service account JSON file (recommended)
GOOGLE_APPLICATION_CREDENTIALS="./credentials/google-cloud-vision.json"
# Option 2: API Key (simpler but less secure)
GOOGLE_CLOUD_VISION_KEY="your_google_cloud_vision_api_key"
# ============================================
# Database
# ============================================
DATABASE_URL="postgresql+asyncpg://user:password@localhost:5432/chatter_copilot"
# ============================================
# Task Master AI Keys (for development tasks)
# ============================================
PERPLEXITY_API_KEY="your_perplexity_api_key_here" # Optional: For research mode. Format: pplx-...
GOOGLE_API_KEY="your_google_api_key_here" # Optional: For Google Gemini models.
MISTRAL_API_KEY="your_mistral_key_here" # Optional: For Mistral AI models.
XAI_API_KEY="YOUR_XAI_KEY_HERE" # Optional: For xAI AI models.
GROQ_API_KEY="YOUR_GROQ_KEY_HERE" # Optional: For Groq models.
OPENROUTER_API_KEY="YOUR_OPENROUTER_KEY_HERE" # Optional: For OpenRouter models.
AZURE_OPENAI_API_KEY="your_azure_key_here" # Optional: For Azure OpenAI models.
OLLAMA_API_KEY="your_ollama_api_key_here" # Optional: For remote Ollama servers.
GITHUB_API_KEY="your_github_api_key_here" # Optional: For GitHub features. Format: ghp_...