Alibaba's Qwen3 32B dense language model with strong reasoning and multilingual capabilities, supporting function calling and code generation across diverse tasks.
131K tokens
5
可用
价格最低
SiliconFlow
$0.32/1M tokens
速度最快
Groq
95ms TTFT
Alibaba Model Studio, Fireworks, Groq, Hugging Face Inference, SiliconFlow
按每百万输入与输出 token 的总成本排序。选择一行可查看提供商详情。
| 提供商 | 价格(每百万) | 速率限制 | 区域 | 状态 | 延迟 |
|---|---|---|---|---|---|
输入: $0.16输出: $0.16 | 600 RPM / 1.0M TPM | ap-east-1global | 正常 | 0ms | |
输入: $0.18输出: $0.18 | 300 RPM / 500K TPM | us-east-1eu-west-1 | 正常 | 0ms | |
输入: $0.20输出: $0.20 | 600 RPM / 1.0M TPM | us-east-1us-west-2 | 正常 | 0ms | |
输入: $0.29输出: $0.39 | 30 RPM / 100K TPM | us-east-1 | 正常 | 95ms | |
输入: $0.56输出: $2.24 | 120 RPM / 500K TPM | us-east-1eu-west-1 | 正常 | 0ms |
通过 SiliconFlow 使用此模型,兼容 OpenAI SDK。
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.siliconflow.com/v1",
apiKey: process.env.SILICONFLOW_API_KEY,
});
const response = await client.chat.completions.create({
model: "Qwen/Qwen3-32B",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);使用 SiliconFlow API · 兼容 OpenAI SDK