Skip to content

Commit

Permalink
Implementación de chatbot Laura
Browse files Browse the repository at this point in the history
  • Loading branch information
Blaister9 committed Oct 3, 2024
1 parent 4be2067 commit 5529bb2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions frontend/src/components/features/LauraChatbot/LauraChatbot.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,12 @@ const LauraChatbot = () => {
}

const respuestaAPI = await enviarMensajeLaura(inputMessage);
console.log("Respuesta de la API:", respuestaAPI); // Para depuración
if (respuestaAPI.results) {
setMensajes((prevMensajes) => [...prevMensajes, { autor: 'Laura (API)', mensaje: respuestaAPI.results }]);
} else {
console.error("Respuesta de API inesperada:", respuestaAPI);
setMensajes((prevMensajes) => [...prevMensajes, { autor: 'Sistema', mensaje: 'Respuesta inesperada del servidor.' }]);
}
} catch (error) {
console.error("Error al enviar mensaje:", error);
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/services/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ const BASE_URL = "https://santensor.com/api/";

// Función para enviar mensajes al chatbot Laura
export async function enviarMensajeLaura(mensaje) {
const response = await fetch(`${BASE_URL}chatbot-laura/search/`, {
const response = await fetch(`${BASE_URL}chatbot_laura/search/?query=${encodeURIComponent(mensaje)}`, {
method: "GET",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({ mensaje }),
});
const data = await response.json();
return data;
Expand Down

0 comments on commit 5529bb2

Please sign in to comment.