QwenMultimodal Model
Qwen 3.7 Plus
Alibaba's cost-efficient Qwen 3.7 workhorse — a multimodal reasoning model that reads text, images, and video across a 1M-token context. Tuned for agentic coding, tool use, and GUI-driven workflows at a fraction of Qwen 3.7 Max's price, with adaptive thinking for scaling test-time compute per request.
import OpenAI from "openai";
const openai = new OpenAI({
baseURL: "https://api.inference.net/v1",
apiKey: "<YOUR_API_KEY>",
});
const completion = await openai.chat.completions.create({
model: "qwen3.7-plus",
messages: [
{
role: "user",
content: "What is the meaning of life?"
}
],
stream: true,
});
for await (const chunk of completion) {
process.stdout.write(chunk.choices[0]?.delta.content as string);
}import OpenAI from "openai";
const openai = new OpenAI({
baseURL: "https://api.inference.net/v1",
apiKey: "<YOUR_API_KEY>",
});
const completion = await openai.chat.completions.create({
model: "qwen3.7-plus",
messages: [
{
role: "user",
content: "What is the meaning of life?"
}
],
stream: true,
});
for await (const chunk of completion) {
process.stdout.write(chunk.choices[0]?.delta.content as string);
}