File size: 1,073 Bytes
88b078d
c0ae31c
 
 
 
b1ad877
c0ae31c
 
 
 
b1ad877
 
 
 
 
 
 
 
 
 
 
 
c0ae31c
 
 
b1ad877
c0ae31c
 
88b078d
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Multiple Models Chat</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div id="chat-container">
        <div id="model-selector-container">
            <label for="model-selector">Choose a Model:</label>
            <select id="model-selector">
                <option value="CodeNinja-1.0-OpenChat-7B">CodeNinja OpenChat 7B</option>
                <option value="CodeLlama-7b-hf">CodeLlama 7B</option>
                <option value="CodeLlama-34b-Instruct-hf">CodeLlama 34B Instruct</option>
            </select>
        </div>
        <div id="chat-box">
            <!-- Messages will be displayed here -->
        </div>
        <input type="text" id="user-input" placeholder="Type your message here...">
        <button id="send-button">Send</button>
    </div>

    <script src="https://cdn.socket.io/socket.io-3.0.3.min.js"></script>
    <script src="script.js"></script>
</body>
</html>