post https://api.siliconflow.cn/v1/embeddings
Creates an embedding vector representing the input text.
Log in to see full request history
time | status | user agent | |
---|---|---|---|
Retrieving recent requests… |
Loading…
Responses
Creates an embedding vector representing the input text.
time | status | user agent | |
---|---|---|---|
Retrieving recent requests… |
xxxxxxxxxx
11curl --request POST \
--url https://api.siliconflow.cn/v1/embeddings \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"model": "BAAI/bge-large-zh-v1.5",
"input": "硅基流动embedding上线,多快好省的 embedding 服务,快来试试吧",
"encoding_format": "float"
}
'
xxxxxxxxxx
20{
"object": [
"list"
],
"model": "string",
"data": [
{
"object": "embedding",
"embedding": [
0
],
"index": 0
}
],
"usage": {
"prompt_tokens": 0,
"completion_tokens": 0,
"total_tokens": 0
}
}