Files
灵应 44dc89360a
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 170h24m47s
CI/CD Pipeline / Validate Code Quality And Tests (pull_request) Failing after 170h24m52s
Deploy / Deploy Staging (push) Failing after 170h27m34s
CI/CD Pipeline / Frontend Lint (push) Failing after 170h28m8s
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 170h28m14s
feat: 配音列表 API 增强 — 预置音色 + 克隆音色统一接口
- 新增预置音色配置(8 个 CosyVoice 真实音色)
- 增强 GET /api/v1/voices 接口,支持 type 查询参数(preset/clone/all)
- 新增 GET /api/v1/voices/presets 端点
- 统一响应格式,包含 preset_count 和 clone_count
- 保留原有 CRUD 端点向后兼容
- 添加 18 个预置音色单元测试(全部通过)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-02 10:26:14 +08:00

128 lines
2.8 KiB
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""统一配音响应 Schema — Phase 3 CosyVoice 集成.
支持预置音色和克隆音色的统一响应格式。
"""
from __future__ import annotations
from datetime import datetime
from typing import List, Literal, Optional
from pydantic import BaseModel, Field
class UnifiedVoiceItemResponse(BaseModel):
"""统一配音项响应。
同时支持预置音色(type=preset)和克隆音色(type=clone)。
"""
id: str
"""音色 ID(预置音色为 voice_id,克隆音色为数据库 ID"""
type: Literal["preset", "clone"]
"""音色类型:preset=预置音色,clone=用户克隆音色"""
name: str
"""音色展示名称"""
description: str = ""
"""音色描述"""
gender: str = "unknown"
"""性别:male/female/unknown"""
language: str = "zh-CN"
"""语言代码"""
voice_id: str = ""
"""CosyVoice 模型音色名"""
voice_provider: str = "cosyvoice"
"""语音服务商"""
audio_url: str = ""
"""音频 URL(克隆音色为上传的音频,预置音色为空)"""
preview_url: str = ""
"""预览音频 URL(预置音色可能有)"""
duration: float = 0
"""音频时长(秒)"""
file_size: int = 0
"""文件大小(字节)"""
status: str = "completed"
"""状态"""
tags: List[str] = Field(default_factory=list)
"""标签列表"""
# 克隆音色特有字段
user_id: Optional[str] = None
"""所属用户 ID(仅克隆音色)"""
project_id: Optional[str] = None
"""所属项目 ID(仅克隆音色)"""
voice_clone_profile_id: Optional[str] = None
"""关联的音色克隆档案 ID(仅克隆音色)"""
created_at: Optional[datetime] = None
"""创建时间(仅克隆音色)"""
updated_at: Optional[datetime] = None
"""更新时间(仅克隆音色)"""
class UnifiedVoiceListResponse(BaseModel):
"""统一配音列表响应。"""
items: list[UnifiedVoiceItemResponse]
"""音色列表(预置音色在前)"""
total: int = 0
"""总数"""
preset_count: int = 0
"""预置音色数量"""
clone_count: int = 0
"""克隆音色数量"""
class PresetVoiceItemResponse(BaseModel):
"""预置音色项响应。"""
voice_id: str
"""CosyVoice 模型音色名"""
name: str
"""中文展示名"""
description: str
"""音色描述"""
gender: str
"""性别"""
language: str = "zh-CN"
"""语言代码"""
preview_url: str = ""
"""预览音频 URL"""
tags: List[str] = Field(default_factory=list)
"""标签列表"""
class PresetVoiceListResponse(BaseModel):
"""预置音色列表响应。"""
items: list[PresetVoiceItemResponse]
"""预置音色列表"""
total: int = 0
"""总数"""