test/moxie/auth/__init__.py
Z User 1f9535d683 Add complete MOXIE web UI with authentication and user management
- 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
2026-03-24 05:15:50 +00:00

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"]