21 lines
393 B
Python
21 lines
393 B
Python
"""
|
|
Facebook搜索智能Agent
|
|
基于Pydantic AI框架,使用LiteLLM Gateway调用模型
|
|
"""
|
|
|
|
__version__ = "1.0.0"
|
|
|
|
# 导出主要接口
|
|
from .config import Config
|
|
from .agent import FacebookAgent
|
|
from .models.schemas import SearchRequest, SearchResponse, SearchResultItem
|
|
|
|
__all__ = [
|
|
"Config",
|
|
"FacebookAgent",
|
|
"SearchRequest",
|
|
"SearchResponse",
|
|
"SearchResultItem",
|
|
]
|
|
|