Döpte om message till query för bättre semantisk överensstämmelse med vad variabeln gör.

This commit is contained in:
2024-07-17 23:47:38 +02:00
parent a3d9d07ead
commit 2aa9aae282
+4 -4
View File
@@ -6,15 +6,15 @@ const userInput = document.getElementById('userInput');
// Define a function to send the user's message to the AI // Define a function to send the user's message to the AI
function sendMessage() { function sendMessage() {
// Get the user's input message and trim any whitespace // Get the user's input message and trim any whitespace
const message = userInput.value.trim(); const query = userInput.value.trim();
// Check if the message is not empty // Check if the message is not empty
if (message !== '') { if (query !== '') {
// Send a POST request to the /api/chat endpoint with the message // Send a POST request to the /api/chat endpoint with the message
fetch('http://localhost:5005/api/chat', { fetch('http://localhost:5005/api/chat', {
method: 'POST', method: 'POST',
headers: { 'Content-Type': 'application/json' }, headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message }), body: JSON.stringify({ query }),
}) })
.then(response => response.json()) .then(response => response.json())
.then(data => { .then(data => {
@@ -22,7 +22,7 @@ function sendMessage() {
const aiResponse = data.response; const aiResponse = data.response;
// Render the user's original message in the chatbox // Render the user's original message in the chatbox
renderMessage(message, 'user-message'); renderMessage(query, 'user-message');
// Render the AI's response in the chatbox // Render the AI's response in the chatbox
renderMessage(aiResponse, 'ai-response'); renderMessage(aiResponse, 'ai-response');