CodeNinjaOpenChat / index.html
MosbergControl's picture
Update index.html
b1ad877
raw
history blame contribute delete
No virus
1.07 kB
<!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>