Modèles
Qwen Image 3.0
Identifiant du modèle: alibaba_qwen/qwen-image-3.0
- Génération d’images
- Multimodal
Modèle d’images Qwen pour générer et retoucher à faible coûts
Idéal pour
des images avec du texte
- Fournisseur
- Alibaba Cloud Model Studio
- Fenêtre de contexte
- Non publié
- Date de sortie
- 2026-07-21
Tarif
1k · any
0,0463 $ / image
2k · any
0,0463 $ / image
Montants en dollars canadiens, convertis au taux indicatif de la Banque du Canada (2026-09-21).
Performance
Mesure
7 derniers jours
Pas assez de données pour afficher le graphique.
Activité
Jetons
—
—
—
—
—
Top 5 des outils · 7 derniers jours
Pas assez de données pour afficher l’activité par outil.
Disponibilité
Disponibilité (%)
7 derniers jours
- Sondes opérationnelles
- 99,91 % sur 7 jours
- Échantillons
- 9 208
Démarrage rapide
Générez une image avec une clé tonia_ et l'identifiant exact ci-dessous.
curl
curl https://pass.tonia.ca:8443/v1/images/generations \
-H "Authorization: Bearer $TONIA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "alibaba_qwen/qwen-image-3.0",
"prompt": "Draw a red fox",
"n": 1
}'Python (SDK tonia)
import os
from tonia import Tonia
client = Tonia(api_key=os.environ["TONIA_API_KEY"])
response = client.images.generate(
model="alibaba_qwen/qwen-image-3.0",
prompt="Draw a red fox",
n=1,
)TypeScript (SDK tonia)
import { Tonia } from "@tonia-router/sdk";
const client = new Tonia({
apiKey: process.env.TONIA_API_KEY,
});
const response = await client.images.generate({
model: "alibaba_qwen/qwen-image-3.0",
prompt: "Draw a red fox",
n: 1,
});