> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gmicloud.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Qwen3 235B A22B Thinking (2507, FP8)

> Interact with this model via GMI's OpenAI-compatible chat completions endpoint.

**Model ID**

```bash theme={null}
Qwen/Qwen3-235B-A22B-Thinking-2507-FP8
```

## API Usage

### Shell

```bash theme={null}
curl https://api.gmi-serving.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $GMI_API_KEY" \
  -d '{
    "model": "Qwen/Qwen3-235B-A22B-Thinking-2507-FP8",
    "messages": [
      { "role": "system", "content": "You are a helpful assistant." },
      { "role": "user",   "content": "Hello!" }
    ]
  }'
```

### Python (OpenAI SDK)

```python theme={null}
from openai import OpenAI

client = OpenAI(
    base_url="https://api.gmi-serving.com/v1",
    api_key="<gmi-api-key>",
)

resp = client.chat.completions.create(
    model="Qwen/Qwen3-235B-A22B-Thinking-2507-FP8",
    messages=[
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user",   "content": "Hello!"},
    ],
)
print(resp.choices[0].message.content)
```

See [LLM API reference](/inference-engine/api-reference/llm-api-reference) for streaming, tool use, and full parameter docs.
