anycoder-93cdb30c / index.html
akhaliq's picture
akhaliq HF Staff
Upload index.html with huggingface_hub
f695f22 verified
raw
history blame
2.24 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Chat Assistant</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<div class="header-content">
<h1>
<svg class="logo-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path>
</svg>
AI Chat Assistant
</h1>
<p class="subtitle">Powered by Gemma 3 270M</p>
</div>
<a href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank" class="built-with">
Built with anycoder
</a>
</header>
<div class="chat-container">
<div id="loadingScreen" class="loading-screen">
<div class="loading-content">
<div class="spinner"></div>
<p class="loading-text">Initializing AI model...</p>
<p class="loading-subtext">This may take a moment on first load</p>
<div id="progressBar" class="progress-bar">
<div id="progressFill" class="progress-fill"></div>
</div>
<p id="progressText" class="progress-text">0%</p>
</div>
</div>
<div id="chatMessages" class="chat-messages"></div>
<div class="input-container">
<div class="input-wrapper">
<textarea
id="messageInput"
placeholder="Message AI Assistant..."
rows="1"
disabled
></textarea>
<button id="sendButton" class="send-button" disabled>
<svg 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"></path>
</svg>
</button>
</div>
<div class="input-footer">
<span class="hint">Press Enter to send, Shift+Enter for new line</span>
</div>
</div>
</div>
</div>
<script type="module" src="index.js"></script>
</body>
</html>