$npx -y skills add cinience/alicloud-skills --skill aliyun-qwen-omniUse when tasks require all-in-one multimodal understanding or generation with Alibaba Cloud Model Studio Qwen Omni models, including image-plus-audio interaction, voice assistants, and realtime multimodal agents.
| 1 | Category: provider |
| 2 | |
| 3 | # Model Studio Qwen Omni |
| 4 | |
| 5 | ## Validation |
| 6 | |
| 7 | ```bash |
| 8 | mkdir -p output/aliyun-qwen-omni |
| 9 | python -m py_compile skills/ai/multimodal/aliyun-qwen-omni/scripts/prepare_omni_request.py && echo "py_compile_ok" > output/aliyun-qwen-omni/validate.txt |
| 10 | ``` |
| 11 | |
| 12 | Pass criteria: command exits 0 and `output/aliyun-qwen-omni/validate.txt` is generated. |
| 13 | |
| 14 | ## Critical model names |
| 15 | |
| 16 | Use one of these exact model strings: |
| 17 | - `qwen3-omni-flash` |
| 18 | - `qwen3-omni-flash-realtime` |
| 19 | - `qwen-omni-turbo` |
| 20 | - `qwen-omni-turbo-realtime` |
| 21 | |
| 22 | ## Typical use |
| 23 | |
| 24 | - Image + audio + text assistant |
| 25 | - Realtime multimodal agents |
| 26 | - Spoken responses grounded in visual input |
| 27 | |
| 28 | ## Normalized interface (omni.chat) |
| 29 | |
| 30 | ### Request |
| 31 | - `model` (string, optional): default `qwen3-omni-flash` |
| 32 | - `text` (string, optional) |
| 33 | - `image` (string, optional) |
| 34 | - `audio` (string, optional) |
| 35 | - `response_modalities` (array<string>, optional): e.g. `["text"]`, `["text","audio"]` |
| 36 | |
| 37 | ### Response |
| 38 | - `text` (string, optional) |
| 39 | - `audio_url` or `audio_chunk` (optional) |
| 40 | - `usage` (object, optional) |
| 41 | |
| 42 | ## Quick start |
| 43 | |
| 44 | ```bash |
| 45 | python skills/ai/multimodal/aliyun-qwen-omni/scripts/prepare_omni_request.py \ |
| 46 | --output output/aliyun-qwen-omni/request.json |
| 47 | ``` |
| 48 | |
| 49 | ## References |
| 50 | |
| 51 | - `references/sources.md` |