__init__.py 704 B

123456789101112131415161718192021222324252627282930313233343536
  1. """
  2. Content Finder 自定义工具
  3. 导入所有自定义工具,确保它们被注册到框架中。
  4. """
  5. from .video_library import (
  6. video_library_search,
  7. video_library_get_detail,
  8. video_library_get_account,
  9. )
  10. from .hotspot import (
  11. hotspot_get_video_profile,
  12. hotspot_analyze_audience,
  13. )
  14. from .gemini_api import (
  15. gemini_analyze_content,
  16. gemini_compare_videos,
  17. )
  18. __all__ = [
  19. # 票圈视频库工具
  20. "video_library_search",
  21. "video_library_get_detail",
  22. "video_library_get_account",
  23. # 热点宝工具
  24. "hotspot_get_video_profile",
  25. "hotspot_analyze_audience",
  26. # Gemini API工具
  27. "gemini_analyze_content",
  28. "gemini_compare_videos",
  29. ]