> ## 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 预算。           |

完整请求格式见[接口说明](/cn/api-reference/endpoint/chat-openai)。
