48 lines
705 B
Plaintext
48 lines
705 B
Plaintext
{
|
|
"name":"baichuanai",
|
|
"chat":{
|
|
"url":"https://api.baichuan-ai.com/v1/chat/completions",
|
|
"method":"POST",
|
|
"headers":[
|
|
{
|
|
"name":"Content-type",
|
|
"value":"application/json"
|
|
},
|
|
{
|
|
"name":"Authorization",
|
|
"value":"Bearer ${apikey}"
|
|
}
|
|
],
|
|
"data":[
|
|
{
|
|
"name":"model",
|
|
"value":"Baichuan2-Turbo-192k"
|
|
},
|
|
{
|
|
"name":"messages",
|
|
"value":"${messages}"
|
|
},
|
|
{
|
|
"name":"stream",
|
|
"value":true
|
|
}
|
|
],
|
|
"resp":[
|
|
{
|
|
"name":"content",
|
|
"value":"choices[0].delta.content"
|
|
},
|
|
{
|
|
"name":"finished",
|
|
"value":"choices[0].finish_reason"
|
|
},
|
|
{
|
|
"name":"usage",
|
|
"value":"usage"
|
|
}
|
|
],
|
|
"chunk_match":"data: (.*)"
|
|
}
|
|
}
|
|
|