qwen/qwen-2.5-coder-32b-instructQwen 2.5 Coder 32B Instruct is a chat model by Qwen. It has 32.8B parameters. It supports a 34K token context window.
| Mode | chat |
| Context Window | 34K tokens |
| Max Output | 34K tokens |
| Function Calling | - |
| Vision | - |
| Reasoning | - |
| Web Search | - |
| Url Context | - |
| Architecture | Qwen2ForCausalLM |
| Model Type | qwen2 |
| Base Model | Qwen/Qwen2.5-Coder-32B |
| Languages | en |
| Library | transformers |
from openai import OpenAI
client = OpenAI(
base_url="https://api.haimaker.ai/v1",
api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
model="qwen/qwen-2.5-coder-32b-instruct",
messages=[
{"role": "user", "content": "Hello, how are you?"}
],
)
print(response.choices[0].message.content)OpenAI-compatible endpoint. Start building in minutes.