文本系列
创建嵌入请求
Creates an embedding vector representing the input text.
POST
/
embeddings
Authorizations
Use the following format for authentication: Bearer <your api key>
Body
application/json
对应的模型名称。为更好的提升服务质量,我们将不定期对本服务提供的模型做相关变更,包括但不限于模型上下线,模型服务能力调整,我们会在可行的情况下以公告、消息推送等适当的方式进行通知。
Available options:
BAAI/bge-large-zh-v1.5
, BAAI/bge-large-en-v1.5
, netease-youdao/bce-embedding-base_v1
, BAAI/bge-m3
, Pro/BAAI/bge-m3
Input text to embed, encoded as a string or array of tokens. To embed multiple inputs in a single request, pass an array of strings or array of token arrays. The input must not exceed the max input tokens for the model (512 tokens for all models except BAAI/bge-m3 which is 8192), cannot be an empty string. 输入的文本将被编码为字符串或 tokens 数组。要在单个请求中嵌入多个输入,请传递字符串数组或字符串数组。每个字符串不得超过模型的最大 tokens 限制(BAAI/bge-m3模型为8192tokens,其余模型为512tokens),且不能为空字符串。