22 lines
738 B
Plaintext
22 lines
738 B
Plaintext
# AI Service Environment Variables
|
|
# Copy this file to .env and modify as needed
|
|
|
|
# LLM Configuration (OpenAI)
|
|
AI_SERVICE_LLM_PROVIDER=openai
|
|
AI_SERVICE_LLM_API_KEY=your-api-key-here
|
|
AI_SERVICE_LLM_BASE_URL=https://api.openai.com/v1
|
|
AI_SERVICE_LLM_MODEL=gpt-4o-mini
|
|
|
|
# If using DeepSeek
|
|
# AI_SERVICE_LLM_PROVIDER=deepseek
|
|
# AI_SERVICE_LLM_API_KEY=your-deepseek-api-key
|
|
# AI_SERVICE_LLM_MODEL=deepseek-chat
|
|
|
|
# Ollama Configuration (for embedding model)
|
|
AI_SERVICE_OLLAMA_BASE_URL=http://ollama:11434
|
|
AI_SERVICE_OLLAMA_EMBEDDING_MODEL=nomic-embed-text
|
|
|
|
# Frontend API Key (required for admin panel authentication)
|
|
# Get this key from the backend logs after first startup, or from /admin/api-keys
|
|
VITE_APP_API_KEY=your-frontend-api-key-here
|