yukardaki kodu düzenledim basitçe . kullanmak isteyenler için

https://dosya.co/rdyadvkassxq/chatgp...er(1).zip.html

settings den api girilmesi lazım .

$prompt = "Write a detailed, informative article about " . $title;
$api_url = 'https://api.openai.com/v1/completions';

$response = wp_remote_post($api_url, [
'body' => json_encode([
'model' => 'gpt-3.5-turbo-instruct', // veya güncel bir model
'prompt' => $prompt,
'temperature' => 0.7,
'max_tokens' => 2048,
'top_p' => 1,
'frequency_penalty' => 0,
'presence_penalty' => 0,
]),
'headers' => [
'Content-Type' => 'application/json',
'Authorization' => 'Bearer ' . $api_key,
],
'timeout' => 45, // İsteğin zaman aşımı süresi, saniye olarak.
]);