模型資訊
上下文和輸出長度為模型規格;實際請求限制、可用性與計費取決於 MixRoute 路由。
能力與使用
- 輸入與輸出均為文本,不是影像生成或原生視覺模型。
- 使用 MixRoute 返回的完整小寫 ID,而不是廠商模型倉庫名稱。
請求示例
呼叫前設定MIXROUTE_API_KEY。
請求欄位
完整請求格式見介面說明。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Meta 指令微調文本模型,適合多語言對話和文本生成。
| 欄位 | 說明 |
|---|---|
model | llama-3.3-70b-instruct |
context | 128K tokens |
endpoint | POST /v1/chat/completions |
MIXROUTE_API_KEY。
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 預算。 |