通用文本向量
提供 OpenAI
兼容的通用文本向量接口。
请求方法
POST
请求地址
https://chat.ecnu.edu.cn/open/api/v1/embeddings
请求参数
参数名 | 类型 | 是否必须 | 描述 |
---|---|---|---|
model | string | 是 | 模型名称,目前可用 ecnu-embedding-small ,详见 模型列表 |
input | string/array | 是 | 输入文本,可以是字符串,也可以是字符串数组。不超过 8192 个字符 |
返回参数
参数名 | 类型 | 描述 |
---|---|---|
created | int | 请求时间戳 |
请求示例
http
POST https://chat.ecnu.edu.cn/open/api/v1/embeddings
Content-Type: application/json
Authorization: Bearer sk-UDK3*******************1Y
{
"model": "ecnu-embedding-small",
"input": ["干的不错","一块石头"]
}
返回示例
json
{
"object": "list",
"data": [
{
"object": "embedding",
"embedding": [
0.0023064255,
-0.009327292,
.... (1024 floats total)
-0.0028842222,
],
"index": 0
}
],
"model": "ecnu-embedding-small",
"usage": {
"prompt_tokens": 8,
"total_tokens": 8
}
}