| 123456789101112131415161718192021222324252627282930313233343536 |
- """
- Content Finder 自定义工具
- 导入所有自定义工具,确保它们被注册到框架中。
- """
- from .video_library import (
- video_library_search,
- video_library_get_detail,
- video_library_get_account,
- )
- from .hotspot import (
- hotspot_get_video_profile,
- hotspot_analyze_audience,
- )
- from .gemini_api import (
- gemini_analyze_content,
- gemini_compare_videos,
- )
- __all__ = [
- # 票圈视频库工具
- "video_library_search",
- "video_library_get_detail",
- "video_library_get_account",
- # 热点宝工具
- "hotspot_get_video_profile",
- "hotspot_analyze_audience",
- # Gemini API工具
- "gemini_analyze_content",
- "gemini_compare_videos",
- ]
|