Spaces:
Runtime error
Runtime error
<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> | |