Free QWEN 2 5 CODER 32B on Cloudflare

Get high-speed free access to qwen-2-5-coder-32b on Cloudflare Workers AI with 10,000 daily free neurons. No credit card required.

Updated 8/20/20262 code examples
加载评分…

About the Model

为什么选择 Qwen 2.5 Coder 32B?

Qwen 2.5 Coder 是国产开源模型在代码领域的巅峰之作,其 32B 版本在性能与推理成本之间取得了完美的平衡。

  • 针对性代码优化:深度优化了 90 多种编程语言,代码通过率(Pass@1)极高。
  • 强大的上下文遵循:在复杂的大规模代码重构任务中表现稳健。
  • 极佳的国产适配:对中文注释和国内开发习惯有天然的理解优势。

How to Access for Free (via Cloudflare Workers AI)

Cloudflare Workers AI 免费政策

Cloudflare Workers AI 为所有免费账户提供每天 10,000 Neurons 的免费额度。这一额度足够支撑每天上百次的文本生成、数十张高质量生图或多段长音频转录。

生图与多模态模型支持

Cloudflare Workers AI 支持直接调用 Flux.1 Schnell、Stable Diffusion XL、Whisper 等模型,每日提供 10,000 Neurons 免费算力额度,无需绑定海外信用卡。

Try it in your browser

Pick a model, paste your own free key, and run. Your key is sent once to call the provider and never stored on our servers.

Pick a model, paste your own free key, and run. Your key is sent once to call the provider and never stored on our servers.

Code Examples

curl
curl https://api.cloudflare.com/client/v4/accounts/$CF_ACCOUNT_ID/ai/run/@cf/qwen/qwen2.5-coder-32b-instruct \
  -H "Authorization: Bearer $CF_API_TOKEN" \
  -d '{"messages": [{"role": "user", "content": "Hello!"}]}'
python
import requests

ACCOUNT_ID = "YOUR_CF_ACCOUNT_ID"
API_TOKEN = "YOUR_CF_API_TOKEN"

response = requests.post(
    f"https://api.cloudflare.com/client/v4/accounts/{ACCOUNT_ID}/ai/run/@cf/qwen/qwen2.5-coder-32b-instruct",
    headers={"Authorization": f"Bearer {API_TOKEN}"},
    json={"messages": [{"role": "user", "content": "Hello!"}]},
)
print(response.json())

Community Feedback

Comments are tied to your GitHub account — sign in to join the discussion.