Helper Behavior Review
python scripts/_core.py is an optional helper whose behavior should be compared with this skill's documented purpose before use. Show what the script does, explain any mismatch with the user-facing description, and run it only when the user explicitly wants that diagnostic path.
Model Studio CosyVoice Voice Design
Use the CosyVoice voice enrollment API to create designed voices from a natural-language voice description.
Critical model names
Use model="voice-enrollment" and one of these target_model values:
cosyvoice-v3.5-plus
cosyvoice-v3.5-flash
cosyvoice-v3-plus
cosyvoice-v3-flash
Recommended default in this repo:
target_model="cosyvoice-v3.5-plus"
Region and compatibility
cosyvoice-v3.5-plus and cosyvoice-v3.5-flash are available only in China mainland deployment mode (Beijing endpoint).
- In international deployment mode (Singapore endpoint),
cosyvoice-v3-plus and cosyvoice-v3-flash do not support voice clone/design.
- The
target_model must match the later speech synthesis model.
Endpoint
- Domestic:
https://dashscope.aliyuncs.com/api/v1/services/audio/tts/customization
- International:
https://dashscope-intl.aliyuncs.com/api/v1/services/audio/tts/customization
Prerequisites
- Set
DASHSCOPE_API_KEY in your environment, or add dashscope_api_key to ~/.alibabacloud/credentials.
Normalized interface (cosyvoice.voice_design)
Request
model (string, optional): fixed to voice-enrollment
target_model (string, optional): default cosyvoice-v3.5-plus
prefix (string, required): letters/digits only, max 10 chars
voice_prompt (string, required): max 500 chars, Chinese or English only
preview_text (string, required): max 200 chars, Chinese or English
language_hints (array[string], optional): zh or en, and should match preview_text
sample_rate (int, optional): e.g. 24000
response_format (string, optional): e.g. wav
Response
voice_id (string)
request_id (string)
status (string, optional)
Operational guidance
- Keep
voice_prompt concrete: timbre, age range, pace, emotion, articulation, and scenario.
- If
language_hints is used, it should match the language of preview_text.
- Designed voice names include a
-vd- marker in the generated backend naming convention.
Local helper script
Prepare a normalized request JSON:
python skills/ai/audio/alicloud-ai-audio-cosyvoice-voice-design/scripts/prepare_cosyvoice_design_request.py \
--target-model cosyvoice-v3.5-plus \
--prefix announcer \
--voice-prompt "沉稳的中年男性播音员,低沉有磁性,语速平稳,吐字清晰。" \
--preview-text "各位听众朋友,大家好,欢迎收听晚间新闻。" \
--language-hint zh
Validation
mkdir -p output/alicloud-ai-audio-cosyvoice-voice-design
for f in skills/ai/audio/alicloud-ai-audio-cosyvoice-voice-design/scripts/*.py; do
python3 -m py_compile "$f"
done
echo "py_compile_ok" > output/alicloud-ai-audio-cosyvoice-voice-design/validate.txt
Pass criteria: command exits 0 and output/alicloud-ai-audio-cosyvoice-voice-design/validate.txt is generated.
Output And Evidence
- Save artifacts, command outputs, and API response summaries under
output/alicloud-ai-audio-cosyvoice-voice-design/.
- Include
target_model, prefix, voice_prompt, and preview_text in the evidence file.
References
references/api_reference.md
references/sources.md
1---2name: alicloud-ai-audio-cosyvoice-voice-design-43description: Use when designing custom voices with Alibaba Cloud Model Studio CosyVoice customization models, especially cosyvoice-v3.5-plus or cosyvoice-v3.5-flash, from a voice prompt plus preview text before using the returned voice_id in TTS.4---5678### Helper Behavior Review910`python scripts/_core.py` is an optional helper whose behavior should be compared with this skill's documented purpose before use. Show what the script does, explain any mismatch with the user-facing description, and run it only when the user explicitly wants that diagnostic path.1112# Model Studio CosyVoice Voice Design1314Use the CosyVoice voice enrollment API to create designed voices from a natural-language voice description.1516## Critical model names1718Use `model="voice-enrollment"` and one of these `target_model` values:19- `cosyvoice-v3.5-plus`20- `cosyvoice-v3.5-flash`21- `cosyvoice-v3-plus`22- `cosyvoice-v3-flash`2324Recommended default in this repo:25- `target_model="cosyvoice-v3.5-plus"`2627## Region and compatibility2829- `cosyvoice-v3.5-plus` and `cosyvoice-v3.5-flash` are available only in China mainland deployment mode (Beijing endpoint).30- In international deployment mode (Singapore endpoint), `cosyvoice-v3-plus` and `cosyvoice-v3-flash` do not support voice clone/design.31- The `target_model` must match the later speech synthesis model.3233## Endpoint3435- Domestic: `https://dashscope.aliyuncs.com/api/v1/services/audio/tts/customization`36- International: `https://dashscope-intl.aliyuncs.com/api/v1/services/audio/tts/customization`3738## Prerequisites3940- Set `DASHSCOPE_API_KEY` in your environment, or add `dashscope_api_key` to `~/.alibabacloud/credentials`.4142## Normalized interface (cosyvoice.voice_design)4344### Request45- `model` (string, optional): fixed to `voice-enrollment`46- `target_model` (string, optional): default `cosyvoice-v3.5-plus`47- `prefix` (string, required): letters/digits only, max 10 chars48- `voice_prompt` (string, required): max 500 chars, Chinese or English only49- `preview_text` (string, required): max 200 chars, Chinese or English50- `language_hints` (array[string], optional): `zh` or `en`, and should match `preview_text`51- `sample_rate` (int, optional): e.g. `24000`52- `response_format` (string, optional): e.g. `wav`5354### Response55- `voice_id` (string)56- `request_id` (string)57- `status` (string, optional)5859## Operational guidance6061- Keep `voice_prompt` concrete: timbre, age range, pace, emotion, articulation, and scenario.62- If `language_hints` is used, it should match the language of `preview_text`.63- Designed voice names include a `-vd-` marker in the generated backend naming convention.6465## Local helper script6667Prepare a normalized request JSON:6869```bash70python skills/ai/audio/alicloud-ai-audio-cosyvoice-voice-design/scripts/prepare_cosyvoice_design_request.py \71 --target-model cosyvoice-v3.5-plus \72 --prefix announcer \73 --voice-prompt "沉稳的中年男性播音员,低沉有磁性,语速平稳,吐字清晰。" \74 --preview-text "各位听众朋友,大家好,欢迎收听晚间新闻。" \75 --language-hint zh76```7778## Validation7980```bash81mkdir -p output/alicloud-ai-audio-cosyvoice-voice-design82for f in skills/ai/audio/alicloud-ai-audio-cosyvoice-voice-design/scripts/*.py; do83 python3 -m py_compile "$f"84done85echo "py_compile_ok" > output/alicloud-ai-audio-cosyvoice-voice-design/validate.txt86```8788Pass criteria: command exits 0 and `output/alicloud-ai-audio-cosyvoice-voice-design/validate.txt` is generated.8990## Output And Evidence9192- Save artifacts, command outputs, and API response summaries under `output/alicloud-ai-audio-cosyvoice-voice-design/`.93- Include `target_model`, `prefix`, `voice_prompt`, and `preview_text` in the evidence file.9495## References9697- `references/api_reference.md`98- `references/sources.md`