__init__.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # feishu_api
  2. from .async_feishu_api import FeishuBotApi
  3. from .async_feishu_api import FeishuSheetApi
  4. # piaoquan api
  5. from .async_piaoquan_api import change_video_audit_status
  6. from .async_piaoquan_api import publish_video_to_piaoquan
  7. from .async_piaoquan_api import fetch_piaoquan_video_list_detail
  8. # async apollo api
  9. from .async_apollo_api import AsyncApolloApi
  10. # deepseek api
  11. from .deep_seek_official_api import fetch_deepseek_completion
  12. # es_api
  13. from .elastic_search_api import AsyncElasticSearchClient
  14. # aliyun_log
  15. from .aliyun_log_api import log
  16. # aigc system api
  17. from .async_aigc_system_api import delete_illegal_gzh_articles
  18. from .async_aigc_system_api import auto_create_crawler_task
  19. from .async_aigc_system_api import auto_bind_crawler_task_to_generate_task
  20. from .async_aigc_system_api import insert_crawler_relation_to_aigc_system
  21. feishu_robot = FeishuBotApi()
  22. feishu_sheet = FeishuSheetApi()
  23. task_apollo = AsyncApolloApi()
  24. __all__ = [
  25. "feishu_robot",
  26. "feishu_sheet",
  27. "change_video_audit_status",
  28. "publish_video_to_piaoquan",
  29. "fetch_piaoquan_video_list_detail",
  30. "AsyncApolloApi",
  31. "task_apollo",
  32. "fetch_deepseek_completion",
  33. "log",
  34. "delete_illegal_gzh_articles",
  35. "auto_create_crawler_task",
  36. "auto_bind_crawler_task_to_generate_task",
  37. "AsyncElasticSearchClient",
  38. "insert_crawler_relation_to_aigc_system"
  39. ]