kuzco-cli/gui/html/index.html

33 lines
1010 B
HTML
Raw Normal View History

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">
2024-03-09 02:15:01 -05:00
</head>
<body>
<div id="app">
<header>
<h1>Welcome to Kuzco Chat</h1>
</header>
<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>
<button id="sendButton">Send</button>
2024-03-09 15:22:44 -05:00
<button id="stopButton" disabled>Stop</button>
2024-03-09 02:15:01 -05:00
</form>
</footer>
</div>
<script src="../js/renderer.js"></script>
2024-03-09 02:15:01 -05:00
</body>
</html>