18ea6cfadb
Deploy / Build Production Runtime Images (push) Has been skipped
Deploy / Deploy Production (push) Has been skipped
Deploy / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Frontend Lint (pull_request) Failing after 185h13m20s
CI/CD Pipeline / Validate Code Quality And Tests (pull_request) Failing after 185h13m24s
Deploy / Deploy Staging (push) Failing after 185h13m50s
CI/CD Pipeline / Frontend Lint (push) Failing after 185h14m17s
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 185h14m23s
- 新增 AutoClipService:自动为剪辑计划片段分配最佳素材 - 评分算法:质量分(0.5) + 时长匹配(0.3) + 分类匹配(0.2) - 支持按 file_type/quality_score/duration/classification/tags 筛选 - AssetRepository 新增 search_candidates() 方法(抽象+SQLAlchemy实现) - 18 个单元测试全部通过
12 lines
298 B
Python
12 lines
298 B
Python
"""Service layer exports for Phase 8 模板编排引擎."""
|
|
|
|
from .auto_clip_service import AutoClipService
|
|
from .edit_plan_service import EditPlanService
|
|
from .edit_template_service import EditTemplateService
|
|
|
|
__all__ = [
|
|
"AutoClipService",
|
|
"EditPlanService",
|
|
"EditTemplateService",
|
|
]
|