LiteLLM / proxy /__init__.py
Sanvi Jain
Initial commit: class-based LiteLLM load balancer proxy with PII shielding and cost-aware routing
728ba08
Raw
History Blame Contribute Delete
381 Bytes
"""
LiteLLM Routing Proxy Server package.
Provides an OOP architecture for managing multi-LLM endpoints, token estimation, rate limiting, and fallback routing.
"""
from .config import ProxyConfig, ModelEndpointConfig
from .router import LiteLLMProxyRouter
from .app import LiteLLMProxyApp
__all__ = ["ProxyConfig", "ModelEndpointConfig", "LiteLLMProxyRouter", "LiteLLMProxyApp"]