未经审查的聊天
开发环境
开发环境
POST
https://stablediffusionapi.com/api/v5/uncensored_chat
POST
向https://stablediffusionapi.com/api/v5/uncensored_chat端点发送请求,并将 api 的响应附加到请求中。{
"status": "success",
"message": "Here is an example of a PHP function that makes an API call using the cURL extension:\n
\nfunction make_api_call($url, $data = []) {\n $ch = curl_init();\n curl_setopt($ch, CURLOPT_URL, $url);\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n curl_setopt($ch, CURLOPT_POST, true);\n curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));\n curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);\n $response = curl_exec($ch);\n curl_close($ch);\n return $response;\n}\n",
"meta": {
"messages": [
{
"role": "user",
"content": "write php function to make api call"
}
],
"max_tokens": 1000,
"temperature": 1,
"top_p": 1,
"presence_penalty": 0,
"frequency_penalty": 0,
"track_id": null,
"webhook": null
}
}
role
要继续下一个 API 调用,请将属性和的对象附加content
到消息数组中,其中role
值为assistant,值为上一次content
调用的响应。message
之后,附加具有相同属性的另一个对象,并将role
值作为用户传递,并将content
值作为新描述传递以继续聊天。请求看起来像这样;{
"key": "",
"messages": [
{
"role": "user",
"content": "write php function to make api call"
},
{
"role":"assistant",
"content":"Here is an example of a PHP function that makes an API call using the cURL extension:\n
\nfunction make_api_call($url, $data = []) {\n $ch = curl_init();\n curl_setopt($ch, CURLOPT_URL, $url);\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n curl_setopt($ch, CURLOPT_POST, true);\n curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));\n curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);\n $response = curl_exec($ch);\n curl_close($ch);\n return $response;\n}\n"
},
{
"role": "user",
"content": "write function to make api call to openai"
},
],
"max_tokens": 1000
}
{
"status": "success",
"message": " Here is an example of a PHP function that makes an API call to OpenAI using the curl_ext extension:\n
\nfunction make_openai_api_call($endpoint, $params) {\n $ch = curl_init();\n curl_setopt($ch, CURLOPT_URL, $endpoint);\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);\n curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);\n curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);\n curl_setopt($ch, CURLOPT_POST, true);\n curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($params));\n $response = curl_exec($ch);\n curl_close($ch);\n return $response;\n}\n",
"meta": {
"messages": [
{
"role": "user",
"content": "write php function to make api call"
},
{
"role": "assistant",
"content": "Here is an example of a PHP function that makes an API call using the cURL extension:\n
\nfunction make_api_call($url, $data = []) {\n $ch = curl_init();\n curl_setopt($ch, CURLOPT_URL, $url);\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n curl_setopt($ch, CURLOPT_POST, true);\n curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));\n curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);\n $response = curl_exec($ch);\n curl_close($ch);\n return $response;\n}\n
"
},
{
"role": "user",
"content": "write function to make api call to openai"
}
],
"max_tokens": 1000,
"temperature": 1,
"top_p": 1,
"presence_penalty": 0,
"frequency_penalty": 0,
"track_id": null,
"webhook": null
}
}
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://stablediffusionapi.com/api/v5/uncensored_chat?members&reference&Type&_postman_listIndexKey=key&_postman_listAllowsMultipleValues' \
--data-raw '{
"key": "",
"messages": [
{
"role": "user",
"content": "write php function to make api call"
},
],
"max_tokens": 1000
}'
响应示例响应示例
{
"status": "string",
"message": "string"
}
请求参数
Body 参数application/json
返回响应
修改于 2023-10-30 10:35:46