free-claude-code/providers/lmstudio/__init__.py
Alishahryar1 b83be84313 Add LM Studio provider support
- Introduced `LMStudioProvider` to the provider system.
- Added a new fixture `lmstudio_provider` in `conftest.py` for testing.
- Updated `get_provider` function to handle `lmstudio` as a valid provider type.
- Enhanced README and `.env.example` to include LM Studio configuration details.
- Updated settings to accommodate LM Studio's base URL and provider type.
- Added tests to verify the functionality of the LM Studio provider.
2026-02-15 19:41:03 -08:00

5 lines
126 B
Python

"""LM Studio provider - OpenAI-compatible local API."""
from .client import LMStudioProvider
__all__ = ["LMStudioProvider"]