# Copy this file to .env and fill in your API keys for the LLM providers you want to use. # The application uses LiteLLM, which will automatically pick up these environment variables. # --- OpenAI --- # Used if you select the 'openai' provider. OPENAI_API_KEY="your-openai-api-key" AZURE_OPENAI_API_KEY="xxx" # Your Azure OpenAI Endpoint (基础 URL,不包含部署路径) AZURE_OPENAI_ENDPOINT="https://gpt-dbis.openai.azure.com/" # Your Azure OpenAI Model Deployment Name AZURE_OPENAI_MODEL="gpt-4.1" AZURE_OPENAI_API_VERSION="2024-12-01-preview" # --- Google Gemini --- # Used if you select the 'gemini' provider. GEMINI_API_KEY="your-gemini-api-key"