Spaces:
Running
Running
File size: 1,018 Bytes
ab9f226 dd1b723 9476166 dd1b723 9476166 dd1b723 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Chatbot</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<h1>AI Chatbot</h1>
<p>Ask anything and get responses powered by Gemma model.</p>
</header>
<div id="chat-container" class="chat-container" aria-live="polite">
<!-- Chat messages will be appended here -->
</div>
<form id="chat-form" class="input-form">
<input type="text" id="user-input" placeholder="Type your message..." aria-label="Type your message" required>
<button type="submit" id="send-btn">Send</button>
</form>
<div id="loading" class="loading" aria-hidden="true">Loading...</div>
<div id="error" class="error" aria-hidden="true"></div>
</div>
<script type="module" src="index.js"></script>
</body>
</html> |