mirror of
https://github.com/Alishahryar1/free-claude-code.git
synced 2026-04-30 12:30:03 +00:00
- 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.
5 lines
126 B
Python
5 lines
126 B
Python
"""LM Studio provider - OpenAI-compatible local API."""
|
|
|
|
from .client import LMStudioProvider
|
|
|
|
__all__ = ["LMStudioProvider"]
|