Mini-Agent / mini_agent /llm /__init__.py
AbdulElahGwaith's picture
Upload folder using huggingface_hub
dc893fb verified
"""LLM clients package supporting both Anthropic and OpenAI protocols."""
from .anthropic_client import AnthropicClient
from .base import LLMClientBase
from .llm_wrapper import LLMClient
from .openai_client import OpenAIClient
__all__ = ["LLMClientBase", "AnthropicClient", "OpenAIClient", "LLMClient"]