81 lines
1.2 KiB
Plaintext
81 lines
1.2 KiB
Plaintext
{
|
|
"name":"baiduqianfan",
|
|
"auth":{
|
|
"url":"https://aip.baidubce.com/oauth/2.0/token",
|
|
"method":"POST",
|
|
"headers":[
|
|
{
|
|
"name":"Content-Type",
|
|
"value":"application/json"
|
|
}
|
|
],
|
|
"params":[
|
|
{
|
|
"name":"grant_type",
|
|
"value":"client_credentials"
|
|
},
|
|
{
|
|
"name":"client_id",
|
|
"value":"${apikey}"
|
|
},
|
|
{
|
|
"name":"client_secret",
|
|
"value":"${secretkey}"
|
|
}
|
|
],
|
|
"set_data":[
|
|
{
|
|
"field":"access_token",
|
|
"name":"accesstoken"
|
|
},
|
|
{
|
|
"field":"expires_in",
|
|
"name":"tokenexpiresin"
|
|
}
|
|
]
|
|
},
|
|
"chat":{
|
|
"url":"https://aip.baidubce.com/rpc/2.0/ai_custom/v1/wenxinworkshop/chat/completions_pro",
|
|
"need_auth":true,
|
|
"model":"ERNIE-4.0-8K",
|
|
"chunk_match":"data: (.*)",
|
|
"method":"POST",
|
|
"headers":[
|
|
{
|
|
"name":"Content-Type",
|
|
"value":"application/json"
|
|
}
|
|
],
|
|
"params":[
|
|
{
|
|
"name":"access_token",
|
|
"value":"${accesstoken}"
|
|
}
|
|
],
|
|
"data":[
|
|
{
|
|
"name":"messages",
|
|
"value":"${messages}"
|
|
},
|
|
{
|
|
"name":"stream",
|
|
"value":true
|
|
}
|
|
],
|
|
"resp":[
|
|
{
|
|
"name":"finish",
|
|
"value":"is_end"
|
|
},
|
|
{
|
|
"name":"content",
|
|
"value":"result"
|
|
},
|
|
{
|
|
"name":"usage",
|
|
"value":"usage"
|
|
}
|
|
]
|
|
}
|
|
}
|