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 Large:文本向量模型。包含 星高算力 调用示例与参数。
text-embedding-3-large
curl "https://api.星高算力/v1/embeddings" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "text-embedding-3-large", "input": "星高算力 model API" }'
import requests response = requests.post( "https://api.星高算力/v1/embeddings", headers={"Authorization": "Bearer YOUR_API_KEY"}, json={'model': 'text-embedding-3-large', 'input': '星高算力 model API'}, ) print(response.json())
model
input
dimensions
encoding_format