File size: 648 Bytes
c954b12
 
 
962529f
 
 
 
c954b12
 
962529f
 
 
 
 
 
 
 
 
 
c954b12
962529f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Chatbot</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div id="container">
        <h1>Cannabis Retail Focus Group Chatbot</h1>
        <div id="chatbox">
            <!-- Messages will be appended here -->
        </div>
        <input type="text" id="user-input" placeholder="Ask a question..." />
        <button id="send-button">Send</button>
        <p id="status">Loading model...</p>
    </div>
    <script type="module" src="index.js"></script>
</body>
</html>