Spaces:
Running
Running
File size: 864 Bytes
ab9f226 dd1b723 fb3e43a dd1b723 fb3e43a dd1b723 fb3e43a dd1b723 fb3e43a 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 |
<!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> |