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

# Llama 3.3 70B Instruct

> Meta 指令微調文本模型，適合多語言對話和文本生成。

Meta 指令微調文本模型，適合多語言對話和文本生成。

## 模型資訊

| 欄位         | 說明                        |
| ---------- | ------------------------- |
| `model`    | llama-3.3-70b-instruct    |
| `context`  | 128K tokens               |
| `endpoint` | POST /v1/chat/completions |

上下文和輸出長度為模型規格；實際請求限制、可用性與計費取決於 MixRoute 路由。

## 能力與使用

* 輸入與輸出均為文本，不是影像生成或原生視覺模型。
* 使用 MixRoute 返回的完整小寫 ID，而不是廠商模型倉庫名稱。

## 請求示例

呼叫前設定 `MIXROUTE_API_KEY`。

```bash theme={null}
curl --request POST "https://api.mixroute.ai/v1/chat/completions" \
  --header "Authorization: Bearer $MIXROUTE_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
  "model": "llama-3.3-70b-instruct",
  "messages": [
    {
      "role": "user",
      "content": "Explain the tradeoffs of database indexes."
    }
  ],
  "max_tokens": 1024
}'
```

## 請求欄位

| 欄位           | 說明                        |
| ------------ | ------------------------- |
| `model`      | 必填，使用上方完整模型 ID。           |
| `messages`   | 必填，會話訊息包含 role 和 content。 |
| `max_tokens` | 可選，輸出 token 預算。           |

完整請求格式見[介面說明](/zh-hant/api-reference/endpoint/chat-openai)。
