MosbergControl commited on
Commit
b1ad877
1 Parent(s): d1b62ff

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +14 -4
index.html CHANGED
@@ -3,17 +3,27 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>CodeNinja OpenChat</title>
7
  <link rel="stylesheet" href="style.css">
8
  </head>
9
  <body>
10
  <div id="chat-container">
11
- <h2>CodeNinja Chat</h2>
12
- <div id="chat-box"></div>
13
- <input type="text" id="user-input" placeholder="Type your message here..." autofocus>
 
 
 
 
 
 
 
 
 
14
  <button id="send-button">Send</button>
15
  </div>
16
 
 
17
  <script src="script.js"></script>
18
  </body>
19
  </html>
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Multiple Models Chat</title>
7
  <link rel="stylesheet" href="style.css">
8
  </head>
9
  <body>
10
  <div id="chat-container">
11
+ <div id="model-selector-container">
12
+ <label for="model-selector">Choose a Model:</label>
13
+ <select id="model-selector">
14
+ <option value="CodeNinja-1.0-OpenChat-7B">CodeNinja OpenChat 7B</option>
15
+ <option value="CodeLlama-7b-hf">CodeLlama 7B</option>
16
+ <option value="CodeLlama-34b-Instruct-hf">CodeLlama 34B Instruct</option>
17
+ </select>
18
+ </div>
19
+ <div id="chat-box">
20
+ <!-- Messages will be displayed here -->
21
+ </div>
22
+ <input type="text" id="user-input" placeholder="Type your message here...">
23
  <button id="send-button">Send</button>
24
  </div>
25
 
26
+ <script src="https://cdn.socket.io/socket.io-3.0.3.min.js"></script>
27
  <script src="script.js"></script>
28
  </body>
29
  </html>