A modular, local-first AI image generation engine β built to be forked, extended, and owned.
I.R.I.S. is an open-source AI image generation platform designed as a foundation, not a locked product.
Think of it as Linux for AI image generation:
You get a fully working system β
but you decide how it evolves.
No cloud. No accounts. No telemetry. No vendor lock-in.
- π§ Local-first β everything runs on your machine
- π Open Source β modify, fork, redistribute
- π§© Modular architecture β UI, backend, models are replaceable
- π§ͺ Experiment-friendly β designed for tinkering & research
- π Production-capable β APIs, WebSockets, scaling-ready
This repository provides a fully functional reference implementation, not a closed product.
- Dual Frontend β Classic HTML UI + Modern React UI
- Multiple AI models (anime, realistic, pixel art, SDXL)
- Text-to-Image generation with real-time progress
- WebSocket streaming for live updates
- Persistent prompt history (server-side)
- NSFW prompt filtering (configurable, can be disabled)
- Multi-GPU support (NVIDIA CUDA, AMD ROCm, Intel Arc XPU, Apple MPS, CPU)
- DRAM Extension β System RAM fallback for low VRAM GPUs (4GB+)
- Multiple Upscalers β Real-ESRGAN, Anime v3, Tile Mode, Lanczos
- Custom resolutions (256Γ256 β 2048Γ2048)
- Hardware monitoring β CPU, RAM, GPU power draw
- Device switching β Switch between GPU/CPU at runtime
- Discord bot integration β Auto-post generated images
- Discord Rich Presence β Show generation status
- Python 3.9 β 3.11
- GPU recommended (4 GB VRAM minimum)
- CUDA 11.8+ / ROCm 5.6+ / oneAPI (optional, CPU mode supported)
git clone https://github.com/Michikaitsu/iris.git
cd iris
python -m venv venv
# Windows
venv\Scripts\activate
# Linux / macOS
source venv/bin/activate
pip install -r requirements.txt
# Optional: Copy environment template
cp .env.example .env# Windows (use venv python directly)
.\venv\Scripts\python.exe src/start.py
# Linux / macOS
python src/start.py
# Server Modes
python src/start.py --mode api # API only
python src/start.py --mode html # API + HTML (default)
python src/start.py --mode react # API + React build
python src/start.py --mode full # All frontends
# Without Discord bot
python src/start.py --no-botπ HTML Frontend: http://localhost:8000
π React Frontend: http://localhost:8000/app (with --mode react)
π Admin Panel: http://localhost:8000/app/admin
iris/
βββ src/ # Backend & core logic
β βββ api/ # FastAPI server & routes
β β βββ server.py # Main server (generation, upscaling, settings)
β β βββ middleware/ # Rate limiting
β β βββ routes/ # API endpoints (system, devices)
β β βββ services/ # NSFW filter, pipeline, history, queue
β βββ core/ # Model loading & generation
β βββ services/ # Discord bot
β βββ utils/ # Logging, file management
β βββ start.py # Entry point
β
βββ frontend/ # Classic HTML Web UI
β βββ index.html # Landing page
β βββ generate.html # Generation UI
β βββ gallery.html # Image gallery
β βββ settings.html # Settings page
β
βββ frontend-react/ # Modern React Web UI
β βββ src/
β β βββ pages/ # HomePage, GeneratePage, GalleryPage, SettingsPage
β β βββ components/ # Reusable components
β β βββ store/ # Zustand state management
β β βββ lib/ # API utilities
β βββ package.json
β βββ vite.config.js
β
βββ static/ # Static assets & runtime data
β βββ css/ # Stylesheets
β βββ js/ # JavaScript
β βββ config/ # Bot config files
β βββ data/ # History (prompts_history.json)
β
βββ outputs/ # Generated images
βββ Logs/ # Runtime logs
βββ docs/ # Documentation
β
βββ settings.json # Runtime settings
βββ requirements.txt # Python dependencies
{
"dramEnabled": true,
"vramThreshold": 6,
"maxDram": 16,
"nsfwEnabled": true,
"nsfwStrength": 2,
"discordEnabled": false
}| Setting | Description |
|---|---|
dramEnabled |
Use system RAM when VRAM is low |
vramThreshold |
VRAM threshold (GB) to enable DRAM Extension |
maxDram |
Maximum system RAM to use (GB) |
nsfwEnabled |
Enable/disable NSFW prompt filter |
nsfwStrength |
1=Minimal, 2=Standard, 3=Strict |
discordEnabled |
Auto-start Discord bot |
HOST=0.0.0.0
PORT=8000
DEFAULT_MODEL=anime_kawai
# Discord Bot (optional)
DISCORD_BOT_TOKEN=your_token
DISCORD_CHANNEL_NEW_IMAGES=channel_id
DISCORD_CHANNEL_VARIATIONS=channel_id
DISCORD_CHANNEL_UPSCALED=channel_id| Tier | GPU | VRAM | Notes |
|---|---|---|---|
| Minimum | NVIDIA GTX 1650 | 4 GB | The birthplace. Small models, DRAM Extension recommended. |
| Sweet Spot | Intel Arc B580 | 12 GB | Best value for money. |
| Advanced | NVIDIA RTX 4070 Super | 12 GB | Faster inference, still VRAM-limited. |
| Professional | NVIDIA RTX 3090 Ti / 4090 | 24 GB | No-compromise local AI & SDXL. |
| God Tier | NVIDIA RTX 5090 | 32 GB | Industrial scale. (Overkill for most) |
π‘ Developer Note: I.R.I.S. was developed and tested on a GTX 1650, proving functionality on low-end hardware. We optimize for best hardware per dollar, not expensive branding.
- REST API for generation, gallery, system info
- WebSocket streams for:
- Generation progress
- Gallery updates
- Multi-page synchronization
Perfect for custom frontends, automation, or external clients.
- Prompt-based NSFW filtering
- Three strength levels (Minimal, Standard, Strict)
- Category-based detection
- Easily extendable or disableable
You are explicitly encouraged to:
- Replace the frontend entirely
- Add your own models or pipelines
- Build a token or subscription system
- Deploy in a private or public datacenter
- Run on NVIDIA, AMD, or Intel GPUs (experimental)
- Fork this into a commercial or closed product
I.R.I.S. does not enforce a business model.
Creative Commons Attribution 4.0 (CC BY 4.0)
You may use, modify, redistribute, and commercialize this project β attribution is required.
See LICENSE for details.
Contributions are welcome β from small fixes to major architectural changes.
Please read CONTRIBUTING.md before submitting a pull request.
I.R.I.S. is not built to compete with cloud AI platforms.
It exists to give control back to developers and creators.
If you value:
- ownership over subscriptions
- experimentation over lock-in
- transparency over black boxes
then this project is for you.