-
-
Notifications
You must be signed in to change notification settings - Fork 269
Add LiteLLM proxy provider support #161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
qdrddr
wants to merge
5
commits into
vitali87:main
Choose a base branch
from
qdrddr:add-litellm-proxy-provider
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+125
−1
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c069209
Add LiteLLM proxy provider support
qdrddr 256132e
fix(providers): resolve litellm_proxy provider registration issues
qdrddr 37c014b
fix(litellm): improve health check to support authenticated proxies
qdrddr 6fbf702
docs(env): add LiteLLM provider example to .env.example
qdrddr e10b98c
docs(env): update example number for LiteLLM custom provider
qdrddr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| """LiteLLM provider using pydantic-ai's native LiteLLMProvider.""" | ||
|
|
||
| from typing import Any | ||
|
|
||
| from loguru import logger | ||
| from pydantic_ai.models.openai import OpenAIChatModel | ||
| from pydantic_ai.providers.litellm import LiteLLMProvider as PydanticLiteLLMProvider | ||
|
|
||
| from .base import ModelProvider | ||
|
|
||
|
|
||
| class LiteLLMProvider(ModelProvider): | ||
| def __init__( | ||
| self, | ||
| api_key: str | None = None, | ||
| endpoint: str = "http://localhost:4000/v1", | ||
| **kwargs: Any, | ||
| ) -> None: | ||
| super().__init__(**kwargs) | ||
| self.api_key = api_key | ||
| self.endpoint = endpoint | ||
|
|
||
| @property | ||
| def provider_name(self) -> str: | ||
| return "litellm_proxy" | ||
|
|
||
| def validate_config(self) -> None: | ||
| if not self.endpoint: | ||
| raise ValueError( | ||
| "LiteLLM provider requires endpoint. " | ||
| "Set ORCHESTRATOR_ENDPOINT or CYPHER_ENDPOINT in .env file." | ||
| ) | ||
|
|
||
qdrddr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| # Check if LiteLLM proxy is running | ||
| # Import locally to avoid circular import | ||
| from .base import check_litellm_proxy_running | ||
|
|
||
| base_url = self.endpoint.rstrip("/v1").rstrip("/") | ||
| if not check_litellm_proxy_running(base_url, api_key=self.api_key): | ||
| raise ValueError( | ||
| f"LiteLLM proxy server not responding at {base_url}. " | ||
| f"Make sure LiteLLM proxy is running and API key is valid." | ||
| ) | ||
|
|
||
| def create_model(self, model_id: str, **kwargs: Any) -> OpenAIChatModel: | ||
| """Create OpenAI-compatible model for LiteLLM proxy. | ||
|
|
||
| Args: | ||
| model_id: Model identifier (e.g., "openai/gpt-3.5-turbo", "anthropic/claude-3") | ||
| **kwargs: Additional arguments passed to OpenAIChatModel | ||
|
|
||
| Returns: | ||
| OpenAIChatModel configured to use the LiteLLM proxy | ||
| """ | ||
| self.validate_config() | ||
|
|
||
| logger.info(f"Creating LiteLLM proxy model: {model_id} at {self.endpoint}") | ||
|
|
||
| # Use pydantic-ai's native LiteLLMProvider | ||
| provider = PydanticLiteLLMProvider(api_key=self.api_key, api_base=self.endpoint) | ||
|
|
||
| return OpenAIChatModel(model_id, provider=provider, **kwargs) | ||
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
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.
Uh oh!
There was an error while loading. Please reload this page.