Access supported Stripe administration and payment APIs through managed OAuth.
Design & media
Alibaba Cloud AI Entry Modelstudio Test
Run and document a minimal validation matrix for 18 Model Studio capabilities in the repository.
What it does
Validate 18 repository skills spanning image, video, speech, multimodal reasoning, embeddings, and reranking. For each capability, read its SKILL.md, choose a minimal input and recommended model, run an SDK call or script, and record the model, request, response, duration, and pass/fail status. Results and supporting evidence are saved under the specified output paths.
When to use it
- Repository-wide Model Studio smoke testing
- Verifying connectivity and permissions before scoped operations
- Recording pass/fail results for image, video, audio, and search skills
- Collecting reproducible API response evidence
The skill document
Category: task
Model Studio Skills Minimal Test
Run minimal validation for currently available Model Studio skills in this repo and record results.
Prerequisites
- Install SDK (virtual environment recommended to avoid PEP 668 restrictions):
python3 -m venv .venv
. .venv/bin/activate
python -m pip install dashscope
- Configure
DASHSCOPE_API_KEY(environment variable preferred; ordashscope_api_keyin~/.alibabacloud/credentials).
Test Matrix (currently supported)
- Text-to-image →
skills/ai/image/alicloud-ai-image-qwen-image/ - Image editing →
skills/ai/image/alicloud-ai-image-qwen-image-edit/ - Text-to-video / Image-to-video (i2v) →
skills/ai/video/alicloud-ai-video-wan-video/ - Reference-to-video (r2v) →
skills/ai/video/alicloud-ai-video-wan-r2v/ - TTS →
skills/ai/audio/alicloud-ai-audio-tts/ - ASR transcription (non-realtime) →
skills/ai/audio/alicloud-ai-audio-asr/ - Realtime ASR →
skills/ai/audio/alicloud-ai-audio-asr-realtime/ - Realtime TTS →
skills/ai/audio/alicloud-ai-audio-tts-realtime/ - Live speech translation →
skills/ai/audio/alicloud-ai-audio-livetranslate/ - CosyVoice voice clone →
skills/ai/audio/alicloud-ai-audio-cosyvoice-voice-clone/ - CosyVoice voice design →
skills/ai/audio/alicloud-ai-audio-cosyvoice-voice-design/ - Voice clone →
skills/ai/audio/alicloud-ai-audio-tts-voice-clone/ - Voice design →
skills/ai/audio/alicloud-ai-audio-tts-voice-design/ - Omni multimodal →
skills/ai/multimodal/alicloud-ai-multimodal-qwen-omni/ - Visual reasoning →
skills/ai/multimodal/alicloud-ai-multimodal-qvq/ - Text embedding →
skills/ai/search/alicloud-ai-search-text-embedding/ - Rerank →
skills/ai/search/alicloud-ai-search-rerank/ - Video editing →
skills/ai/video/alicloud-ai-video-wan-edit/
If new capability tests are needed, create corresponding skill first (use skills/ai/misc/alicloud-ai-misc-crawl-and-skill/ to refresh model list).
Minimal Flow Per Capability
- Open target sub-skill directory and read
SKILL.md. - Choose one minimal input example and recommended model.
- Run SDK call or script.
- Record model, request summary, response summary, duration, and status.
Result Template
Save as output/alicloud-ai-entry-modelstudio-test-results.md:
# Model Studio Skill Test Results
- Date: YYYY-MM-DD
- Environment: region / API_BASE / auth method
| Capability | Sub-skill | Model | Request summary | Result summary | Status | Notes |
| --- | --- | --- | --- | --- | --- | --- |
| Text-to-image | alicloud-ai-image-qwen-image | | ... | ... | pass/fail | ... |
| Image editing | alicloud-ai-image-qwen-image-edit | | ... | ... | pass/fail | ... |
| Image-to-video (i2v) | alicloud-ai-video-wan-video | | ... | ... | pass/fail | ... |
| Reference-to-video (r2v) | alicloud-ai-video-wan-r2v | | ... | ... | pass/fail | ... |
| TTS | alicloud-ai-audio-tts | | ... | ... | pass/fail | ... |
| ASR (non-realtime) | alicloud-ai-audio-asr | | ... | ... | pass/fail | ... |
| Realtime ASR | alicloud-ai-audio-asr-realtime | | ... | ... | pass/fail | ... |
| Realtime TTS | alicloud-ai-audio-tts-realtime | | ... | ... | pass/fail | ... |
| Live speech translation | alicloud-ai-audio-livetranslate | | ... | ... | pass/fail | ... |
| CosyVoice voice clone | alicloud-ai-audio-cosyvoice-voice-clone | | ... | ... | pass/fail | ... |
| CosyVoice voice design | alicloud-ai-audio-cosyvoice-voice-design | | ... | ... | pass/fail | ... |
| Voice clone | alicloud-ai-audio-tts-voice-clone | | ... | ... | pass/fail | ... |
| Voice design | alicloud-ai-audio-tts-voice-design | | ... | ... | pass/fail | ... |
| Omni multimodal | alicloud-ai-multimodal-qwen-omni | | ... | ... | pass/fail | ... |
| Visual reasoning | alicloud-ai-multimodal-qvq | | ... | ... | pass/fail | ... |
| Text embedding | alicloud-ai-search-text-embedding | | ... | ... | pass/fail | ... |
| Rerank | alicloud-ai-search-rerank | | ... | ... | pass/fail | ... |
| Video editing | alicloud-ai-video-wan-edit | | ... | ... | pass/fail | ... |
Failure Handling
- If parameters are unclear, check target sub-skill
SKILL.mdorreferences/*.md. - If model is unavailable, refresh model list and retry.
- For auth issues, verify
DASHSCOPE_API_KEY(env var or~/.alibabacloud/credentials).
Validation
mkdir -p output/alicloud-ai-entry-modelstudio-test
echo "validation_placeholder" > output/alicloud-ai-entry-modelstudio-test/validate.txt
Pass criteria: command exits 0 and output/alicloud-ai-entry-modelstudio-test/validate.txt is generated.
Output And Evidence
- Save artifacts, command outputs, and API response summaries under
output/alicloud-ai-entry-modelstudio-test/. - Include key parameters (region/resource id/time range) in evidence files for reproducibility.
Workflow
- Confirm user intent, region, identifiers, and whether the operation is read-only or mutating.
- Run one minimal read-only query first to verify connectivity and permissions.
- Execute the target operation with explicit parameters and bounded scope.
- Verify results and save output/evidence files.
References
- Source list:
references/sources.md
Questions people ask
- Which capabilities are included in the test matrix?
- The matrix covers 18 capabilities: image generation and editing; video generation, reference generation, and editing; TTS, ASR, realtime speech, translation, voice cloning, and voice design; omni multimodal and visual reasoning; text embeddings and reranking.
- What setup is required before running the tests?
- Install the `dashscope` Python package, preferably in a virtual environment, and configure `DASHSCOPE_API_KEY` through an environment variable or `dashscope_api_key` in `~/.alibabacloud/credentials`.
- What output does a test run produce?
- It writes a Markdown results table to `output/alicloud-ai-entry-modelstudio-test-results.md` and stores artifacts, command outputs, and API response summaries under `output/alicloud-ai-entry-modelstudio-test/`.
Related skills
Search YouTube data and manage account resources through Data API v3 with managed OAuth.
Audit organic search issues and turn SERP, GSC, and competitor evidence into URL-level fixes and content.
Design and critique visual artifacts using measurable rules for hierarchy, spacing, type, color, and layout.
Analyze mixed files and produce multiple requested artifacts through one agent task.
Generate customizable adult portraits through an authenticated API with quota checks and multiple export formats.