20909e2058
CI/CD Pipeline / Frontend Unit Tests (push) Successful in 44s
CI/CD Pipeline / Check if frontend-only change (push) Has been skipped
CI/CD Pipeline / Validate - Code Quality (push) Successful in 4m59s
CI/CD Pipeline / Validate - Type Check (mypy) (push) Successful in 1m4s
CI/CD Pipeline / Validate - Migration (alembic) (push) Successful in 48s
CI/CD Pipeline / Frontend Lint (push) Successful in 28s
CI/CD Pipeline / PR Build API Image (push) Has been skipped
CI/CD Pipeline / PR Build Web Image (push) Has been skipped
CI/CD Pipeline / PR Build Worker Image (push) Has been skipped
CI/CD Pipeline / Build Staging API Image (push) Successful in 14m43s
CI/CD Pipeline / Build Staging Web Image (push) Successful in 1m33s
CI/CD Pipeline / Build Staging Worker Image (push) Successful in 4m48s
CI/CD Pipeline / Build Production API Image (push) Has been skipped
CI/CD Pipeline / Build Production Web Image (push) Has been skipped
CI/CD Pipeline / Build Production Worker Image (push) Has been skipped
CI/CD Pipeline / Unit Tests (push) Successful in 4m46s
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Integration Tests (push) Successful in 2m18s
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Successful in 1m22s
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Staging E2E Tests (push) Failing after 18s
CI/CD Pipeline / ACR Image Cleanup (push) Successful in 32s
CI/CD Pipeline / Staging API Integration Tests (push) Successful in 3m9s
26 lines
653 B
Python
Executable File
26 lines
653 B
Python
Executable File
"""AI 相关异步任务 — 智能推荐 & 封面生成.
|
||
|
||
核心业务逻辑已迁移到 packages.shared.ai_service,
|
||
本模块仅保留 Worker 侧的 Celery 任务包装和向后兼容的直接导入。
|
||
"""
|
||
|
||
from __future__ import annotations
|
||
|
||
from packages.shared.ai_service import (
|
||
_call_ai_cover_service,
|
||
_call_ai_recommend_service,
|
||
_fallback_recommend_clips,
|
||
_parse_recommend_response,
|
||
run_ai_recommend,
|
||
run_generate_cover,
|
||
)
|
||
|
||
__all__ = [
|
||
"run_ai_recommend",
|
||
"run_generate_cover",
|
||
"_call_ai_recommend_service",
|
||
"_call_ai_cover_service",
|
||
"_fallback_recommend_clips",
|
||
"_parse_recommend_response",
|
||
]
|