AgentFrame-v3 / agentframe /llm /__init__.py
ljsysfurry's picture
Upload agentframe/llm/__init__.py with huggingface_hub
246ba9c verified
Raw
History Blame Contribute Delete
206 Bytes
"""LLM 模块"""
from .base import LLMProvider, create_llm
from .deepseek import DeepSeekProvider
from .mock import MockProvider
__all__ = ["LLMProvider", "create_llm", "DeepSeekProvider", "MockProvider"]