Porten

qwen3.6-35b-a3b

Run qwen3.6-35b-a3b on Porten — EU-sovereign, OpenAI-compatible AI inference.

262K tokens contextTools / function calling

Specifications

Model IDqwen3.6-35b-a3b
Context window262K tokens
Capabilitieschat, Tools / function calling
AvailabilityProvisioned on demand — the first request loads it (may take longer).
API compatibilityOpenAI Chat Completions (drop-in)
Data residencyEU-sovereign — runs on the Porten network in Europe

Pricing

$0.20per 1M input tokens
$0.40per 1M output tokens

Use qwen3.6-35b-a3b with the OpenAI SDK

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)
Get an API key Try it in the playground Browse all models