whFalsa / app /ai /__init__.py
codeBOKER's picture
Replace AIOrchestrator with LiteLLM Router for multi-provider fallback
87c0663
Raw
History Blame Contribute Delete
264 Bytes
from app.ai.orchestrator import AIOrchestrator
from app.ai.providers import GroqChatProvider, OpenRouterChatProvider
from app.ai.router import LiteLLMOrchestration
__all__ = ["AIOrchestrator", "GroqChatProvider", "OpenRouterChatProvider", "LiteLLMOrchestration"]