Run qwen3.6-35b-a3b on Porten — EU-sovereign, OpenAI-compatible AI inference.
| Model ID | qwen3.6-35b-a3b |
| Context window | 262K tokens |
| Capabilities | chat, Tools / function calling |
| Availability | Provisioned on demand — the first request loads it (may take longer). |
| API compatibility | OpenAI Chat Completions (drop-in) |
| Data residency | EU-sovereign — runs on the Porten network in Europe |
Point any OpenAI-compatible client at Porten — only the base URL and model change.
curl https://porten.ai/v1/chat/completions \
-H "Authorization: Bearer $PORTEN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3.6-35b-a3b",
"messages": [{"role": "user", "content": "Hello!"}]
}'
from openai import OpenAI
client = OpenAI(base_url="https://porten.ai/v1", api_key="$PORTEN_API_KEY")
resp = client.chat.completions.create(
model="qwen3.6-35b-a3b",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)