Qwen2.5 72B Instruct (free)
qwen/qwen-2.5-72b-instruct:free
Created Sep 19, 202432,768 context
$0/M input tokens$0/M output tokens
Providers for Qwen2.5 72B Instruct (free)
OpenRouter routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.
1.
Cline
Autonomous coding agent right in your IDE
54.3Mtokens
2.
Roo Code
A whole dev team of AI agents in your editor
31.6Mtokens
3.
Cline Chinese
new
4.5Mtokens
4.
SillyTavern
LLM frontend for power users
3.4Mtokens
5.
Cherry Studio
new
2.42Mtokens
6.
Open WebUI
Extensible, self-hosted AI interface
1.66Mtokens
7.
Chub AI
GenAI for everyone
1.46Mtokens
8.
OpenRouter: Chatroom
Chat with multiple LLMs at once
1.03Mtokens
9.
ChatWise
Chatbot with artifacts and search
750Ktokens
10.
Local Operator
AI agents on your device
398Ktokens
11.
Mantella
Skyrim & Fallout 4 mod, naturally speak to NPCs
338Ktokens
12.
liteLLM
Open-source library to simplify LLM calls
302Ktokens
13.
Voices of the Court
new
196Ktokens
14.
Agnaistic
A "bring your own AI" chat service
132Ktokens
15.
Lobe Chat
new
113Ktokens
16.
Chatbox AI
On-device AI copilot
110Ktokens
17.
Roo Code Chinese
new
82Ktokens
18.
AnythingLLM
new
82Ktokens
19.
Aider
AI pair programming in your terminal
51Ktokens
20.
Generador Letras AI
new
49Ktokens
Uptime stats for Qwen2.5 72B Instruct (free)
Uptime stats for Qwen2.5 72B Instruct (free) across all providers
When an error occurs in an upstream provider, we can recover by routing to another healthy provider, if your request filters allow it.
Learn more about our load balancing and customization options.
Sample code and API for Qwen2.5 72B Instruct (free)
OpenRouter normalizes requests and responses across providers for you.
OpenRouter provides an OpenAI-compatible completion API to 300+ models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.
In the examples below, the OpenRouter-specific headers are optional. Setting them allows your app to appear on the OpenRouter leaderboards.
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key="<OPENROUTER_API_KEY>",
)
completion = client.chat.completions.create(
extra_headers={
"HTTP-Referer": "<YOUR_SITE_URL>", # Optional. Site URL for rankings on openrouter.ai.
"X-Title": "<YOUR_SITE_NAME>", # Optional. Site title for rankings on openrouter.ai.
},
extra_body={},
model="qwen/qwen-2.5-72b-instruct:free",
messages=[
{
"role": "user",
"content": "What is the meaning of life?"
}
]
)
print(completion.choices[0].message.content)
Using third-party SDKs
For information about using third-party SDKs and frameworks with OpenRouter, please see our frameworks documentation.
See the Request docs for all possible fields, and Parameters for explanations of specific sampling parameters.