omnizen.ai
← All models
Qwen

Qwen Flash

Alibaba's small fast tier. Surprisingly capable for routing, classification, drafting, and short replies. We recommend this as the default for chat UIs that need to fan-out.

FastCheap
OpenAI-compatible
import OpenAI from "openai";

const ai = new OpenAI({
  apiKey: process.env.OMNIZEN_KEY,
  baseURL: "https://api.omnizen.ai/v1",
});

const res = await ai.chat.completions.create({
  model: "qwen-flash",
  messages: [{ role: "user", content: "Hello" }],
});
Anthropic-compatible
from anthropic import Anthropic

ai = Anthropic(
    api_key=os.environ["OMNIZEN_KEY"],
    base_url="https://api.omnizen.ai",
)

res = ai.messages.create(
    model="qwen-flash",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Hello"}],
)

Start with $1 in free credit.

No card required. Plug into your editor in under a minute.

Qwen Flash · Omnizen AI