Spaces:
Runtime error
Runtime error
File size: 2,055 Bytes
7e02cc7 |
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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chatbot</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 40px;
text-align: center;
}
input[type="text"] {
width: 300px;
padding: 10px;
font-size: 16px;
margin-top: 20px;
border: 2px solid #ccc;
border-radius: 5px;
}
button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
margin-top: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #45a049;
}
p {
margin-top: 20px;
font-size: 18px;
color: #333;
}
</style>
</head>
<body>
<h1>Chatbot Interface</h1>
<input type="text" id="question" placeholder="Ask a question...">
<button onclick="askQuestion()">Ask</button>
<p id="answer">Answer will appear here...</p>
<script>
async function askQuestion() {
const questionInput = document.getElementById('question');
const answerDisplay = document.getElementById('answer');
const question = questionInput.value;
const response = await fetch('/chat/', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ question: question })
});
if (response.ok) {
const data = await response.json();
answerDisplay.textContent = 'Answer: ' + data.answer;
} else {
answerDisplay.textContent = 'Error: Unable to fetch answer.';
}
}
</script>
</body>
</html>
|