Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Text Embedding 3 Small:文字向量模型。包含 MixRoute 呼叫範例與參數。
text-embedding-3-small
curl "https://api.mixroute.ai/v1/embeddings" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "text-embedding-3-small", "input": "MixRoute model API" }'
import requests response = requests.post( "https://api.mixroute.ai/v1/embeddings", headers={"Authorization": "Bearer YOUR_API_KEY"}, json={'model': 'text-embedding-3-small', 'input': 'MixRoute model API'}, ) print(response.json())
model
input
dimensions
encoding_format