curl --location --request POST 'http://dev-cn.your-api-server.com/v1/embeddings' \
--header 'Authorization: Bearer $BAICHUNA_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
    "model": "Baichuan-Text-Embedding",
    "input": "百川大模型"
  }'                {
    "data":[
        {
            "index":0,
            "embedding":[
                0.009904979,
                0.0043520033,
                -0.0013257588,
                0.03802266,
                -0.011389947,
                0.0101243835,
                ...
            ],
            "object":"embedding"
        }
    ],
    "model":"Baichuan-Text-Embedding",
    "object":"list",
    "usage":{
        "prompt_tokens":7,
        "total_tokens":7
    }
}