Feat/add litellm provider#6856
Open
RheagalFire wants to merge 2 commits into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
💻 Change Type
🔀 Description of Change
Adds LiteLLM as a first-class AI gateway provider, giving NextChat users access to 100+ LLM providers (AWS Bedrock, Vertex AI, Groq, Mistral, Cohere, etc.) through a single proxy endpoint.
Changes (8 files, 451 insertions):
New files:
app/client/platforms/litellm.ts- Client-side provider implementingLLMApi(chat with streaming, model auto-discovery via/v1/models, tool calling, reasoning content support)app/api/litellm.ts- Server-side proxy handler with auth and model filteringtest/litellm.test.ts- 13 unit tests (path resolution, message extraction, model discovery, error handling, chat payload)Modified files:
app/constant.ts- AddedLITELLM_BASE_URL,LiteLLMtoServiceProvider/ModelProviderenums,ApiPath.LiteLLM,LiteLLMConstconfigapp/client/api.ts- ImportedLiteLLMApi, added dispatch cases inClientApiandgetClientApi()app/store/access.ts- AddedlitellmUrl,litellmApiKeystate,isValidLiteLLM()validationapp/config/server.ts- AddedLITELLM_URL,LITELLM_API_KEYenv varsapp/api/auth.ts- Added LiteLLM auth caseapp/api/[provider]/[...path]/route.ts- Registered LiteLLM route handlerTests*
Unit tests (13/13 pass):
Live E2E (Azure Foundry Claude Sonnet 4.6 via LiteLLM proxy):
📝 Additional Information
LITELLM_URLandLITELLM_API_KEYenv varshttp://localhost:4000matches LiteLLM's standard port/v1/modelsendpointClient-side setup:
http://localhost:4000)Server-side (env vars):