📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-29 07:59:17 +00:00
parent 60364c6660
commit 0c634043e3
427 changed files with 26138 additions and 2336 deletions
@@ -1,39 +1,40 @@
---
name: modellix
description: "Integrate Modellix unified API/CLI for async AI image and video generation (model run --wait, task download)."
description: "Integrate the Modellix API/CLI for async AI image, video, and speech generation or transcription (model run --wait, task download)."
category: creative
risk: critical
source: community
source_repo: Modellix/modellix-skill
source_repo: Modellix/modellix-plugin
source_type: official
date_added: "2026-07-16"
author: Modellix
tags: [image-generation, video-generation, modellix, cli, api]
tags: [image-generation, video-generation, audio-generation, text-to-speech, speech-to-text, speech-to-speech, modellix, cli, api]
tools: [claude, cursor, gemini]
license: "MIT"
license_source: "https://github.com/Modellix/modellix-skill/blob/main/LICENSE"
license_source: "https://github.com/Modellix/modellix-plugin/blob/main/LICENSE"
---
# Modellix
## Overview
Modellix is a Model-as-a-Service platform for AI image and video generation. This skill teaches agents to use the official `modellix-cli` workflow (doctor → model run --wait → task download).
Modellix is a Model-as-a-Service platform for AI image, video, and speech generation or transcription. This skill teaches agents to use the official `modellix-cli` workflow (doctor → model run --wait → task download).
Upstream package: https://github.com/Modellix/modellix-skill/tree/main/modellix-skill
Upstream package: https://github.com/Modellix/modellix-plugin/tree/main/skills/modellix (Open Plugins layout; skill tree under `skills/modellix/`).
## When to Use This Skill
- Generate images from text prompts
- Generate or edit videos from text or images
- Generate speech from text, transcribe speech, or transform one voice into another
- Call Modellix models through a unified API/CLI
- The user mentions Modellix, Seedream, Seedance, Nano Banana, or similar providers via Modellix
- The user mentions Modellix, Seedream, Seedance, Nano Banana, Whisper, Qwen Audio, CosyVoice, or similar providers via Modellix
## How It Works
1. Authenticate with `MODELLIX_API_KEY` or `modellix-cli auth login`
2. Run `modellix-cli doctor --json`
3. Use default models when unspecified (T2I: `google/nano-banana-2-lite`, T2V: `bytedance/seedance-2.0-mini-t2v`)
3. Use default models when unspecified (T2I: `google/nano-banana-2-lite`, T2V: `bytedance/seedance-2.0-mini-t2v`, I2I: `google/nano-banana-2-lite-edit`, I2V: `bytedance/seedance-2.0-fast-i2v`, V2V: `bytedance/seedance-2.0-fast-v2v`, TTS: `alibaba/qwen-audio-3.0-tts-flash`, STT: `openai/whisper-1`, STS: `alibaba/cosyvoice-clone`)
4. Submit with `modellix-cli model run --wait --json`
5. Persist outputs with `modellix-cli task download`
@@ -57,6 +58,33 @@ modellix-cli model run \
--wait --timeout 10m --json
```
### Text-to-speech
```bash
modellix-cli model run \
--model-slug alibaba/qwen-audio-3.0-tts-flash \
--body '{"text":"There is a large garden behind my house.","voice":"longanhuan_v3.6"}' \
--wait --timeout 5m --json
```
### Speech-to-text
```bash
modellix-cli model run \
--model-slug openai/whisper-1 \
--body '{"url":"https://example.com/meeting.mp3"}' \
--wait --timeout 5m --json
```
### Speech-to-speech
```bash
modellix-cli model run \
--model-slug alibaba/cosyvoice-clone \
--body '{"model":"cosyvoice-v3.5-plus","url":"https://example.com/reference.wav","text":"There is a large garden behind my house."}' \
--wait --timeout 5m --json
```
## Best Practices
- Prefer CLI `model run --wait` over hand-rolled polling
@@ -64,6 +92,7 @@ modellix-cli model run \
- Prefer session-scoped API-key use; run `modellix-cli auth login` only when the user approves persistent local credential storage
- Do not blindly retry paid submissions after unknown outcomes — check `task history`
- Confirm the destination and overwrite policy before `task download`; never replace an existing file without explicit approval
- Download results before they expire; hosted result URLs are retained for about 7 days
- Fetch request schemas from `model describe` `docs_url` or https://docs.modellix.ai/llms.txt
## Security & Safety Notes