https://github.com/zerexei/styexei
An AI-powered fashion app where users can upload a photo, try on new outfits digitally, and get recommendations based on current trends.
https://github.com/zerexei/styexei
Last synced: 5 months ago
JSON representation
An AI-powered fashion app where users can upload a photo, try on new outfits digitally, and get recommendations based on current trends.
- Host: GitHub
- URL: https://github.com/zerexei/styexei
- Owner: zerexei
- License: other
- Created: 2025-08-31T05:16:39.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-31T05:18:13.000Z (10 months ago)
- Last Synced: 2025-08-31T07:11:26.528Z (10 months ago)
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 👗 AI Outfit Try-On
**"Outfit recommendations based on wardrobe & trends. Upload full body image then generate image with product."**
An AI-powered fashion app where users can upload a photo, try on new outfits digitally, and get recommendations based on current trends.
---
## ✨ Features (MVP)
- 🔐 User signup/login with **JWT authentication**
- 📸 Upload full-body photo
- 🤖 AI outfit try-on (swap clothing digitally)
- 👕 Outfit recommendations based on current trends
- 💾 Save & share generated looks
---
## 🧠 AI/ML Component
- **Stable Diffusion + ControlNet / Try-On Diffusion** for outfit replacement
- **Pre-trained fashion AI models** (HuggingFace, Replicate, etc.)
- Text-based recommendations powered by **LLMs (OpenAI/Anthropic)**
---
## 🏗 Tech Stack
**Frontend:** React + Tailwind
**Backend:** Python (FastAPI) for AI pipeline
**Database:** Supabase
**AI Tools:** Stable Diffusion + ControlNet, HuggingFace Try-On models
**Infra:** GPU hosting (Replicate, Banana.dev, AWS EC2 w/ GPU)
---
## 🚀 Getting Started
```bash
# Clone repo
git clone https://github.com/zerexei/styexei.git
cd styexei
# Install backend dependencies
pip install -r requirements.txt
# Run FastAPI backend
uvicorn app.main:app --reload
# Install frontend dependencies
cd frontend
npm install
npm run dev