compressDL / index.html
alihamedi's picture
Upload 3 files
9da24c9 verified
raw
history blame contribute delete
706 Bytes
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title>AI Streaming Chat Demo</title>
<style>body{font-family:system-ui;background:#0f0f0f;color:#fff;text-align:center;padding:50px}h1{color:#00ff9d}.chat{max-width:600px;margin:40px auto}</style>
</head>
<body>
<h1>AI Streaming Demo</h1>
<p>A short AI chat UI demo with real-time streaming vibes.</p>
<div class="chat">
<p>Click below to test the demo button (UI only).</p>
<button onclick="alert('In the real version, the AI responds here!')">Send Test Message</button>
</div>
<p style="font-size:12px;opacity:.65;">Powered by Hugging Face • Real-time AI Demo</p>
</body>
</html>