""" AI能力模块 提供AI模型管理、智能代理、生成能力和工作流编排功能 """ from .models import ModelHandler, get_models, BaseApiPlatform, SiliconFlowAPI from .agent import BaseAgent __all__ = [ # 模型管理 "ModelHandler", "get_models", "BaseApiPlatform", "SiliconFlowAPI", # 智能代理 "BaseAgent" ]