- 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
201 B
Python
8 lines
201 B
Python
"""
|
|
MOXIE Authentication Module
|
|
User management, session handling, and rate limiting.
|
|
"""
|
|
from .models import AuthManager, User, get_auth_manager
|
|
|
|
__all__ = ["AuthManager", "User", "get_auth_manager"]
|