mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-26 18:26:38 +00:00
* fix: enhance Bayer MGA provider reliability and Docker integration * Merge latest dev branch changes into Bayer MGA feature branch * Improve Bayer MGA provider model filtering and error handling * Add robust model validation with fallback mechanisms * Enhance logging and debugging capabilities for model selection * Add Bayer MGA environment variables to Docker configurations * Update worker configuration with Bayer MGA API keys * Add comprehensive Bayer MGA setup to .env.example * Create standalone test script for Bayer MGA provider debugging * Fix intermittent model selection issues beyond Claude 3.7 Sonnet * Ensure provider switching works without breaking other providers * Bayer MGA provider multimodel support and test coverage. * Add Claude.md.
27 lines
738 B
TypeScript
27 lines
738 B
TypeScript
interface Env {
|
|
RUNNING_IN_DOCKER: Settings;
|
|
DEFAULT_NUM_CTX: Settings;
|
|
ANTHROPIC_API_KEY: string;
|
|
OPENAI_API_KEY: string;
|
|
GROQ_API_KEY: string;
|
|
HuggingFace_API_KEY: string;
|
|
OPEN_ROUTER_API_KEY: string;
|
|
OLLAMA_API_BASE_URL: string;
|
|
OPENAI_LIKE_API_KEY: string;
|
|
OPENAI_LIKE_API_BASE_URL: string;
|
|
TOGETHER_API_KEY: string;
|
|
TOGETHER_API_BASE_URL: string;
|
|
DEEPSEEK_API_KEY: string;
|
|
LMSTUDIO_API_BASE_URL: string;
|
|
GOOGLE_GENERATIVE_AI_API_KEY: string;
|
|
MISTRAL_API_KEY: string;
|
|
XAI_API_KEY: string;
|
|
PERPLEXITY_API_KEY: string;
|
|
AWS_BEDROCK_CONFIG: string;
|
|
BAYER_MGA_API_KEY: string;
|
|
BAYER_MGA_API_BASE_URL: string;
|
|
GITHUB_CLIENT_ID: string;
|
|
GITHUB_CLIENT_SECRET: string;
|
|
SESSION_SECRET: string;
|
|
}
|