feat(01-01): create Python project foundation with dependencies
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
This commit is contained in:
Mai Development
2026-01-27 11:59:37 -05:00
parent 1d9f19b8c2
commit de6058f109
4 changed files with 71 additions and 0 deletions

6
src/models/__init__.py Normal file
View File

@@ -0,0 +1,6 @@
"""Model interface adapters and resource monitoring."""
from .lmstudio_adapter import LMStudioAdapter
from .resource_monitor import ResourceMonitor
__all__ = ["LMStudioAdapter", "ResourceMonitor"]