function curl($data){
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.openai.com/v1/completions',
CURLOPT_SSL_VERIFYHOST=> false, // 跳过证书验证(https)的网站无法跳过,会报错
CURLOPT_SSL_VERIFYPEER=> false, // 跳过证书验证
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>$data,
CURLOPT_HTTPHEADER => array(
'Authorization:Bearer '.KEY,
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
print_r($response);
}
$data = [
"model"=> "text-davinci-003",
"prompt"=> "你需要提问的问题",
"max_tokens"=> 200,
"temperature"=> 0.9,
"stop"=>'\n'
];
curl(json_encode($data));
ChatGPT PHP版本接入代码
发布于 2023-04-12 1474 次阅读
Comments NOTHING