Created
March 17, 2025 04:44
-
-
Save diogenesjup/4dd3f3b5f005ff60d43688579b4d299a to your computer and use it in GitHub Desktop.
Agente de avaliação de imagens
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$curl = curl_init(); | |
curl_setopt_array($curl, array( | |
CURLOPT_URL => 'https://api.diogenesjunior.com.br/ia/gpt4-avaliar-imagem/', | |
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 => 'origem=postman&prompt=Avalie%20a%20resposta%20do%20usu%C3%A1rio%20se%20estiver%20correta%2C%20responda%20APENAS%20\'CORRETA\'%2C%20caso%20contr%C3%A1rio%20oriente%20o%20usu%C3%A1rio%20a%20responder%20corretamente&max_tokens=100&imagem_url=https%3A%2F%2Fwpdj.live%2Fwpbet%2Fwp-content%2Fuploads%2F2025%2F03%2FScreenshot_20240723-162722_WhatsApp.jpg&contexto=Est%C3%A1%20imagem%20mostra%20a%20pessoa%20de%20corpo%20inteiro%20E%20tem%20apenas%20UMA%20pessoa%3F', | |
CURLOPT_HTTPHEADER => array( | |
'Content-Type: application/x-www-form-urlencoded' | |
), | |
)); | |
$response = curl_exec($curl); | |
curl_close($curl); | |
echo $response; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment