Alibaba Qwen

Qwen3 Next 80b A3b Instruct API

CN Alibaba Qwen
Essayer dans le bac à sable → Obtenir une clé API

Qwen3 Next 80b A3b Instruct est un modèle polyvalent d'Alibaba Qwen. Disponible via l'API unifiée MeshTok.

RapideOutils

Tarifs (officiel, par 1M tokens)

Entrée
$0.50/M
Sortie
$1.50/M

Spécifications

Fenêtre de contexte128K tokens Modalités d'entréeTexte StreamingOui APICompatible OpenAI

Comment utiliser Qwen3 Next 80b A3b Instruct

Remplacement direct d'OpenAI. Changez base_url et modèle.

# Python - pip install openai
from openai import OpenAI

client = OpenAI(
    base_url="https://meshtok.com/v1",
    api_key="sk-your-MeshTok-key",
)

resp = client.chat.completions.create(
    model="ali/qwen3-next-80b-a3b-Instruct",
    messages=[{"role":"user","content":"Hello!"}],
)
print(resp.choices[0].message.content)
# cURL
curl https://meshtok.com/v1/chat/completions \
  -H "Authorization: Bearer sk-your-MeshTok-key" \
  -H "Content-Type: application/json" \
  -d '{"model":"ali/qwen3-next-80b-a3b-Instruct","messages":[{"role":"user","content":"Hello!"}]}'

Modèles similaires

D'autres modèles à considérer.