访问一个php文件调用chatgpt
时间: 2023-06-19 17:07:40 浏览: 107
如果您想使用 PHP 调用 ChatGPT,可以使用 OpenAI 的 API。您需要先获取 API 密钥,然后使用以下代码示例来调用 ChatGPT:
```php
<?php
$api_key = "YOUR_API_KEY_HERE";
$model_engine = "davinci";
$api_url = "https://api.openai.com/v1/engines/" . $model_engine . "/completions";
$data = array(
"prompt" => "Hello, how are you?",
"temperature" => 0.5,
"max_tokens" => 100,
"top_p" => 1,
);
$payload = json_encode($data);
$headers = array(
'Content-Type: application/json',
'Authorization: Bearer ' . $api_key
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $api_url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $payload);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
curl_close($ch);
$response = json_decode($result, true);
$text = $response['choices'][0]['text'];
echo $text;
?>
```
在上面的代码中,您需要替换 `YOUR_API_KEY_HERE` 为您的 OpenAI API 密钥,`prompt` 为您想要使用 ChatGPT 生成回复的输入文本,`temperature` 和 `max_tokens` 分别控制回复的创造性和长度。您可以根据自己的需求调整这些值。最后,代码将输出 ChatGPT 生成的回复文本。
阅读全文