qwen-3-anycoder-2 / index.html
akhaliq's picture
akhaliq HF Staff
Upload index.html with huggingface_hub
fb3e43a verified
raw
history blame contribute delete
864 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Qwen3 Chat Interface</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="chat-container">
<header>
<h1>Qwen3 Chat Assistant</h1>
<p>Powered by Transformers.js</p>
</header>
<main>
<div id="chat-history" class="chat-history" role="log" aria-live="polite"></div>
<div class="input-area">
<textarea
id="user-input"
placeholder="Type your message here..."
aria-label="Type your message here"
rows="3"
></textarea>
<button id="send-button" aria-label="Send message">Send</button>
</div>
</main>
</div>
<script src="index.js" type="module"></script>
</body>
</html>