模型資訊
上下文和輸出長度為模型規格;實際請求限制、可用性與計費取決於 MixRoute 路由。
能力與使用
- 啟用引數為 17B,包含 128 個專家;支援文本/影像輸入,輸出文本/程式碼。
- 上下文長度為模型廠商規格,不代表每條託管路由均開放完整容量;實際限制取決於部署。
請求示例
呼叫前設定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-4-maverick-17b-128e-instruct-fp8 |
context | 1M 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-4-maverick-17b-128e-instruct-fp8",
"messages": [
{
"role": "user",
"content": "Explain the tradeoffs of database indexes."
}
],
"max_tokens": 1024
}'
| 欄位 | 說明 |
|---|---|
model | 必填,使用上方完整模型 ID。 |
messages | 必填,會話訊息包含 role 和 content。 |
max_tokens | 可選,輸出 token 預算。 |