qwen
qwen3-235b-a22b-instruct-2507-fp8
via Gonka Network
Your gateway to this model on Gonka Network
160 nodes262K252.3K
Code Examples
Copy and paste these examples to use this model. Replace YOUR_API_KEY with your key from the dashboard.
app.py
from openai import OpenAI
client = OpenAI(
base_url="https://api.gonkagate.com/v1",
api_key="YOUR_API_KEY"
)
response = client.chat.completions.create(
model="qwen/qwen3-235b-a22b-instruct-2507-fp8",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Hello!"}
],
temperature=0.7,
max_tokens=1000
)
print(response.choices[0].message.content)Get your API key from the Dashboard. Works with OpenAI SDKs and common API clients.
Model facts
Provider
qwen
Task type
Text Generation
Context window
262K
Nodes hosting
160
Last updated
2025-09-17
HuggingFace likes
147
How to call this model
Use this model ID in chat completions and streaming requests.
- Quickstart — base URL and API key setup.
- POST /chat/completions — full request schema and parameters.
- Streaming — SSE responses for real-time output.
Pricing
Pricing details in one place
See current rates, fee model, and examples on the pricing page.