qtAnswering / static /index.html
ikram
message
ffda1f9
raw
history blame
1.16 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Question Answering</title>
</head>
<body>
<h1>AI-powered Question Answering</h1>
<h3>Ask questions about documents or images</h3>
<form action="/question-answering-doc" method="POST" enctype="multipart/form-data">
<label for="question">Question:</label>
<input type="text" id="question" name="question" required><br><br>
<label for="file">Upload Document (PDF, DOCX, PPTX):</label>
<input type="file" id="file" name="file" required><br><br>
<input type="submit" value="Submit">
</form>
<form action="/question-answering-image" method="POST" enctype="multipart/form-data">
<label for="question">Question (Image-based):</label>
<input type="text" id="question" name="question" required><br><br>
<label for="image_file">Upload Image:</label>
<input type="file" id="image_file" name="image_file" accept="image/*" required><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>