-
Notifications
You must be signed in to change notification settings - Fork 0
/
chat.php
55 lines (45 loc) · 1.55 KB
/
chat.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
$apiKey = '';
// Definir la URL de la API y tu clave de autenticación
$url = 'https://api.openai.com/v1/chat/completions';
$content = file_get_contents("/home/fsilva/content", true);
// Definir el cuerpo de la solicitud
$data = array(
"model" => "gpt-3.5-turbo",
"messages" => array(
array(
"role" => "system",
"content" => "Crea resumenes de lo que te de el usuario y formatealo en HTML con bootstrap"
),
array(
"role" => "user",
"content" => $content
)
)
);
// Convertir el cuerpo de la solicitud a formato JSON
$data_string = json_encode($data);
// Inicializar cURL
$ch = curl_init($url);
// Configurar las opciones de cURL
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Authorization: Bearer ' . $apiKey));
// Ejecutar la solicitud y obtener la respuesta
$result = curl_exec($ch);
// Manejar errores si los hay
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}else{
$objeto = json_decode($result);
echo '<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">';
echo '<div class="container mt-5">';
echo $objeto->choices[0]->message->content;
}
// Cerrar la conexión cURL
curl_close($ch);
// Mostrar la respuesta
?>