private function generate_image($frazy) { $prompt = 'Fotograficzne zdjęcie przedstawiające: ' . implode(', ', $frazy); $url = 'https://api.openai.com/v1/images/generations'; $data = [ 'model' => 'dall-e-3', 'prompt' => $prompt, 'n' => 1, 'size' => '512x512', ]; $args = [ 'body' => json_encode($data), 'headers' => [ 'Content-Type' => 'application/json', 'Authorization' => 'Bearer ' . $this->openai_api_key, ], 'timeout' => 60, ]; $response = wp_remote_post($url, $args); if (is_wp_error($response)) { return ''; } $body = wp_remote_retrieve_body($response); $json = json_decode($body, true); if (isset($json['data'][0]['url'])) { return esc_url_raw($json['data'][0]['url']); } return ''; } private function call_openai_chat($messages) { $url = 'https://api.openai.com/v1/chat/completions'; $data = [ 'model' => 'gpt-4o-mini', 'messages' => $messages, 'max_tokens' => 700, 'temperature' => 0.8, ]; $args = [ 'body' => json_encode($data), 'headers' => [ 'Content-Type' => 'application/json', 'Authorization' => 'Bearer ' . $this->openai_api_key, ], 'timeout' => 30, ]; $response = wp_remote_post($url, $args); if (is_wp_error($response)) { return []; } $body = wp_remote_retrieve_body($response); $json = json_decode($body, true); return $json ?? []; } private function publish_post($url, $user, $pass, $title, $content) { $endpoint = rtrim($url, '/') . '/wp-json/wp/v2/posts'; $auth = base64_encode("$user:$pass"); $data = [ 'title' => $title, 'content' => $content, 'status' => 'publish', ]; $response = wp_remote_post($endpoint, [ 'headers' => [ 'Authorization' => 'Basic ' . $auth, 'Content-Type' => 'application/json' ], 'body' => json_encode($data), 'timeout' => 30, ]); if (is_wp_error($response)) { return $response->get_error_message(); } $code = wp_remote_retrieve_response_code($response); if ($code >= 200 && $code < 300) { return true; } else { return 'Błąd HTTP: ' . $code; } } Testowy tytuł na temat: podróże wakacje wypoczynek – seo-adder.pl

Testowy tytuł na temat: podróże wakacje wypoczynek

sport – to jest nasz anchor w treści.

Obrazek

Treść artykułu na temat podróże wakacje wypoczynek – testowy tekst otaczający obrazek po lewej stronie.

Leave a Comment

Twój adres e-mail nie zostanie opublikowany. Wymagane pola są oznaczone *

Scroll to Top