1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # feishu_api
- from .async_feishu_api import FeishuBotApi
- from .async_feishu_api import FeishuSheetApi
- # piaoquan api
- from .async_piaoquan_api import change_video_audit_status
- from .async_piaoquan_api import publish_video_to_piaoquan
- from .async_piaoquan_api import fetch_piaoquan_video_list_detail
- # async apollo api
- from .async_apollo_api import AsyncApolloApi
- # deepseek api
- from .deep_seek_official_api import fetch_deepseek_completion
- # es_api
- from .elastic_search_api import AsyncElasticSearchClient
- # aliyun_log
- from .aliyun_log_api import log
- # aigc system api
- from .async_aigc_system_api import delete_illegal_gzh_articles
- from .async_aigc_system_api import auto_create_crawler_task
- from .async_aigc_system_api import auto_bind_crawler_task_to_generate_task
- from .async_aigc_system_api import insert_crawler_relation_to_aigc_system
- feishu_robot = FeishuBotApi()
- feishu_sheet = FeishuSheetApi()
- task_apollo = AsyncApolloApi()
- __all__ = [
- "feishu_robot",
- "feishu_sheet",
- "change_video_audit_status",
- "publish_video_to_piaoquan",
- "fetch_piaoquan_video_list_detail",
- "AsyncApolloApi",
- "task_apollo",
- "fetch_deepseek_completion",
- "log",
- "delete_illegal_gzh_articles",
- "auto_create_crawler_task",
- "auto_bind_crawler_task_to_generate_task",
- "AsyncElasticSearchClient",
- "insert_crawler_relation_to_aigc_system",
- ]
|