system-prompts-and-models-o.../dealix/core/llm/__init__.py
2026-05-01 14:03:52 +03:00

7 lines
222 B
Python

"""LLM clients and routing."""
from core.llm.base import LLMClient, LLMResponse, Message
from core.llm.router import ModelRouter, get_router
__all__ = ["LLMClient", "LLMResponse", "Message", "ModelRouter", "get_router"]