2024-03-09 02:15:01 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Kuzco Chat</title>
|
|
|
|
<link rel="stylesheet" href="css/styles.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="app">
|
|
|
|
<header>
|
|
|
|
<h1>Welcome to Kuzco Chat</h1>
|
|
|
|
</header>
|
2024-03-09 05:43:40 -05:00
|
|
|
<div id="modelSelectionContainer">
|
|
|
|
<label for="modelSelect">Choose AI Model:</label>
|
|
|
|
<select id="modelSelect">
|
|
|
|
<option value="mistral">Mistral</option>
|
|
|
|
<option value="llama2">Llama2</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
2024-03-09 02:15:01 -05:00
|
|
|
<main id="chatHistory" class="chat-history">
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
|
|
<form id="chatForm" class="chat-form">
|
|
|
|
<input id="promptInput" type="text" placeholder="Enter your prompt" autofocus>
|
2024-03-09 03:12:19 -05:00
|
|
|
<button id="sendButton" onclick="sendPrompt()">Send</button>
|
2024-03-09 02:15:01 -05:00
|
|
|
</form>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="renderer.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|