- New web UI with OpenWebUI-like interface using Tailwind CSS - SQLite-based authentication with session management - User registration, login, and profile pages - Chat interface with conversation history - Streaming responses with visible thinking phase - File attachments support - User document uploads in profile - Rate limiting (5 requests/day for free users) - Admin panel user management with promote/demote/delete - Custom color theme matching balloon logo design - Compatible with Nuitka build system
8 lines
131 B
Python
8 lines
131 B
Python
"""
|
|
MOXIE Web UI Module
|
|
OpenWebUI-like interface for MOXIE.
|
|
"""
|
|
from .routes import router as web_router
|
|
|
|
__all__ = ["web_router"]
|