File size: 1,162 Bytes
384cf9d
ffda1f9
 
 
 
 
 
 
 
 
 
 
 
 
384cf9d
ffda1f9
 
 
 
 
 
 
 
 
384cf9d
ffda1f9
 
384cf9d
ffda1f9
 
 
 
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
<!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>