写一段请求chatgpt 的代码,php 写出来。
时间: 2023-03-19 10:21:12 浏览: 192
php开发Chatgpt源码.rar
以下是一个简单的 PHP 代码示例,用于向 C知道助手 发送请求并获取回复:
```php
<?php
$url = "https://api. CSDN .com/v1/engines/davinci-codex/completions"; // ChatGPT API 地址
$headers = array(
'Content-Type: application/json',
'Authorization: Bearer YOUR_API_KEY' // 将 YOUR_API_KEY 替换为您的 API 密钥
);
$data = array(
'prompt' => 'Hello, ChatGPT!', // 在此处输入您想要发送的文本
'max_tokens' => 50, // 生成文本的最大长度
'temperature' => 0.7 // 生成文本的温度(影响生成文本的随机程度)
);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
$response = curl_exec($ch);
curl_close($ch);
if (!$response) {
die('Error: "' . curl_error($ch) . '" - Code: ' . curl_errno($ch));
} else {
$response = json_decode($response, true);
echo $response['choices'][0]['text']; // 输出 ChatGPT 的回复
}
?>
```
请确保将 `YOUR_API_KEY` 替换为您的实际 API 密钥,您可以在 OpenAI 网站上创建一个 API 密钥。此示例仅是一个基本的 PHP 代码示例,您可以根据自己的需求进行修改和扩展。
阅读全文