feat(01-01): create Python project foundation with dependencies
Some checks failed
Discord Webhook / git (push) Has been cancelled
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:
6
src/models/__init__.py
Normal file
6
src/models/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
||||
"""Model interface adapters and resource monitoring."""
|
||||
|
||||
from .lmstudio_adapter import LMStudioAdapter
|
||||
from .resource_monitor import ResourceMonitor
|
||||
|
||||
__all__ = ["LMStudioAdapter", "ResourceMonitor"]
|
||||
Reference in New Issue
Block a user