未经审查的聊天
POST
https://stablediffusionapi.com/api/v5/uncensored_chatPOST
向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
}
}
尽可能多次重复该过程,直到您对结果满意为止
使用的型号是 Mistral 7B Instruct-v0.1
请求参数
Body 参数application/json
key
string
必需
您用于请求授权的 API Key
messages
array [object {2}]
必需
它接受角色 和内容密钥。角色接受或的值,同时内容接受聊天描述userassistant
role
string
可选
content
string
可选
max_tokens
integer
最大token数量
示例
{
"key": "",
"messages": [
{
"role": "user",
"content": "write php function to make api call"
},
],
"max_tokens": 1000
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
status
string
必需
message
string
必需
示例
{
"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
}
}
最后修改时间: 1 年前