Spaces:
Running
Running
File size: 1,593 Bytes
ab9f226 dd1b723 30984b2 dd1b723 30984b2 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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gemma AI Chatbot</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<h1>🤖 Gemma AI Assistant</h1>
<p>Powered by Gemma-3-270M-IT</p>
</header>
<div class="chat-container">
<div id="chatMessages" class="chat-messages">
<div class="message assistant">
<div class="message-content">
Hello! I'm Gemma, your AI assistant. How can I help you today?
</div>
</div>
</div>
<div class="input-container">
<input
type="text"
id="userInput"
placeholder="Type your message here..."
disabled
>
<button id="sendButton" disabled>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M22 2L11 13M22 2l-7 20-4-9-9-4 20-7z"/>
</svg>
</button>
</div>
</div>
<div id="loadingIndicator" class="loading-indicator">
<div class="spinner"></div>
<span>Initializing AI model...</span>
</div>
</div>
<script type="module" src="index.js"></script>
</body>
</html> |