Mini-Agent / mini_agent /__init__.py
AbdulElahGwaith's picture
Upload folder using huggingface_hub
dc893fb verified
"""Mini Agent - Minimal single agent with basic tools and MCP support."""
from .agent import Agent
from .llm import LLMClient
from .schema import FunctionCall, LLMProvider, LLMResponse, Message, ToolCall
__version__ = "0.1.0"
__all__ = [
"Agent",
"LLMClient",
"LLMProvider",
"Message",
"LLMResponse",
"ToolCall",
"FunctionCall",
]