Some checks failed
Discord Webhook / git (push) Has been cancelled
- Created pyproject.toml with lmstudio, psutil, pydantic dependencies - Created requirements.txt as fallback for pip install - Created src/models/__init__.py with proper imports - Set up PEP 518 compliant package structure - Fixed .gitignore to allow src/models/ directory
13 lines
294 B
Python
13 lines
294 B
Python
"""Mai - Autonomous Conversational AI Agent
|
|
|
|
A local-first AI agent that can improve her own code through
|
|
safe, reviewed modifications.
|
|
"""
|
|
|
|
__version__ = "0.1.0"
|
|
__author__ = "Mai Project"
|
|
|
|
from .models import LMStudioAdapter, ResourceMonitor
|
|
|
|
__all__ = ["LMStudioAdapter", "ResourceMonitor"]
|