aliyun-qwen-tts-realtime-test

$npx mdskill add cinience/alicloud-skills/aliyun-qwen-tts-realtime-test

Validates minimal request path for Aliyun Qwen TTS Realtime in Model Studio

  • Tests core functionality of real-time text-to-speech conversion
  • Depends on Aliyun Model Studio Qwen TTS Realtime API
  • Uses strict or fallback modes to determine execution success
  • Delivers pass/fail status with detailed error logging on failure
SKILL.md
.github/skills/aliyun-qwen-tts-realtime-testView on GitHub ↗
---
name: aliyun-qwen-tts-realtime-test
description: Minimal realtime TTS smoke test for Model Studio Qwen TTS Realtime.
version: 1.0.0
---

Category: test

# Minimal Viable Test

## Goals

- Validate only the minimal request path for this skill.
- If execution fails, record exact error details without guessing parameters.

## Prerequisites

- Prepare authentication and region settings based on the skill instructions.
- Target skill: skills/ai/audio/aliyun-qwen-tts-realtime

## Test Steps (Minimal)

1) Open the target skill SKILL.md and choose one minimal input example.
2) Send one minimal request or run the example script.
3) Record request summary, response summary, and success/failure reason.

可执行示例(兼容性探测 + 可选降级):

```bash
.venv/bin/python skills/ai/audio/aliyun-qwen-tts-realtime/scripts/realtime_tts_demo.py \
  --text "realtime test" \
  --fallback
```

Strict mode (CI):

```bash
.venv/bin/python skills/ai/audio/aliyun-qwen-tts-realtime/scripts/realtime_tts_demo.py \
  --text "realtime test" \
  --strict
```

Pass criteria:
- Non-strict mode:`realtime_probe.ok=true` 或 `fallback.ok=true`
- 严格模式:`realtime_probe.ok=true`(否则脚本非 0 退出)

## Result Template

- Date: YYYY-MM-DD
- Skill: skills/ai/audio/aliyun-qwen-tts-realtime
- Conclusion: pass / fail
- Notes:
More from cinience/alicloud-skills