first commit

This commit is contained in:
ytc1012
2026-02-04 16:11:55 +08:00
commit 0f3ee050dc
165 changed files with 25795 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
"""MeetSpot Agent Module - 基于 OpenManus 架构的智能推荐 Agent"""
from app.agent.base import BaseAgent
from app.agent.meetspot_agent import MeetSpotAgent, create_meetspot_agent
from app.agent.tools import (
CalculateCenterTool,
GeocodeTool,
GenerateRecommendationTool,
SearchPOITool,
)
__all__ = [
"BaseAgent",
"MeetSpotAgent",
"create_meetspot_agent",
"GeocodeTool",
"CalculateCenterTool",
"SearchPOITool",
"GenerateRecommendationTool",
]