console.log( 'Code is Poetry' );
$token = 'il_tuo_token_api_gpt';
$text = 'Testo su cui vuoi che GPT lavori';
$data = array(
'prompt' => $text,
'max_tokens' => 100, // Lunghezza massima della risposta
);
$args = array(
'body' => json_encode($data),
'headers' => array(
'Authorization' => 'Bearer ' . $token,
'Content-Type' => 'application/json',
),
);
$response = wp_remote_post('https://api.gpt.com/v1/completions', $args);
if (is_wp_error($response)) {
// Gestione degli errori
} else {
$body = wp_remote_retrieve_body($response);
$result = json_decode($body, true);
$generated_text = $result['choices'][0]['text'];
// Ora puoi utilizzare $generated_text come risposta da GPT
}
WhatsApp us