
Add comprehensive Docker deployment configuration with: - New .dockerignore and .llm.env.example files - Enhanced Dockerfile with multi-stage build and optimizations - Detailed README with setup instructions and environment configurations - Improved requirements.txt with Gunicorn - Better error handling in async_configs.py BREAKING CHANGE: Docker deployment now requires .llm.env file for API keys
8 lines
285 B
Plaintext
8 lines
285 B
Plaintext
# LLM Provider Keys
|
|
OPENAI_API_KEY=your_openai_key_here
|
|
DEEPSEEK_API_KEY=your_deepseek_key_here
|
|
ANTHROPIC_API_KEY=your_anthropic_key_here
|
|
GROQ_API_KEY=your_groq_key_here
|
|
TOGETHER_API_KEY=your_together_key_here
|
|
MISTRAL_API_KEY=your_mistral_key_here
|
|
GEMINI_API_TOKEN=your_gemini_key_here |