fork download
  1. <?php
  2. // Define the prompt to be sent
  3. $prompt = 'Please generate a simple blog post according to this title "What is CHATGPT"';
  4.  
  5. // Enter E-mail to generate API
  6. $apiKey = 'Enter your E-mail Address to get the free ChatGPT API';
  7.  
  8. // Define the default model if none is specified
  9. $defaultModel = 'gpt-3.5-turbo';
  10.  
  11. // Uncomment the model you want to use, and comment out the others
  12. // $model = 'gpt-4';
  13. // $model = 'gpt-4-32k';
  14. // $model = 'gpt-3.5-turbo-0125';
  15. $model = $defaultModel;
  16.  
  17. // Build the URL to call
  18. $apiUrl = 'http://195.179.229.119/gpt/api.php?prompt=' . urlencode($prompt) . '&api_key=' . urlencode($apiKey) . '&model=' . urlencode($model);
  19.  
  20. // Initialize cURL session
  21. $ch = curl_init();
  22.  
  23. // Set cURL options
  24. curl_setopt($ch, CURLOPT_URL, $apiUrl);
  25. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  26.  
  27. // Execute the cURL request
  28. $response = curl_exec($ch);
  29.  
  30. // Check for cURL errors
  31. if ($response === false) {
  32. echo 'cURL Error: ' . htmlspecialchars(curl_error($ch));
  33. } else {
  34. $data = json_decode($response, true);
  35. print_r($data);
  36. }
  37.  
  38. // Close the cURL session
  39. ?>
Success #stdin #stdout 0.03s 26236KB
stdin
Standard input is empty
stdout
cURL Error: