BiteChat / README.md
Onyxl's picture
Add README.md
dbab20d verified
|
Raw
History Blame Contribute Delete
924 Bytes
---
title: BiteChat
emoji: πŸ’¬
colorFrom: red
colorTo: yellow
sdk: docker
pinned: false
short_description: Real-time multi-room chat for Hugging Face users
---
# BiteChat πŸ’¬
**Real-time multi-user chat, built for the Hugging Face community.**
Chat with other HF users in public rooms β€” no login required, just pick a username and jump in.
## Features
- πŸš€ Real-time messaging via WebSockets
- 🏠 Multiple rooms β€” switch or create rooms instantly
- πŸ‘₯ Live user list & online count
- πŸ“œ Scrollable message history (last 100 messages)
- 🎨 Dark-mode UI with orange/yellow HF-inspired palette
- πŸ“± Mobile-friendly
## Tech Stack
| Layer | Tech |
|-------|------|
| Backend | FastAPI + WebSockets |
| Frontend | Vanilla JS (no framework) |
| Deploy | Docker (HF Spaces) |
## Running locally
```bash
pip install -r requirements.txt
uvicorn app:app --reload --port 7860
# open http://localhost:7860
```