mirror of
https://github.com/coleam00/bolt.new-any-llm
synced 2024-12-27 22:33:03 +00:00
76cc7a8139
- Create detailed provider implementation guide with: - Architecture overview and implementation steps - Configuration patterns and best practices - Testing checklist and Docker integration guide - Example using Together AI implementation - Add Together AI as new provider with: - Environment variables and Docker configuration - Support for Qwen, Llama, and Mixtral models - API key and base URL management - OpenAI-compatible API integration
18 lines
469 B
TypeScript
18 lines
469 B
TypeScript
interface Env {
|
|
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;
|
|
}
|