free-claude-code/providers/lmstudio/__init__.py
Alishahryar1 87d8ce1196 feat(lmstudio): route natively to Anthropic /v1/messages endpoint
- Rewrites LMStudioProvider to inherit from BaseProvider
- Passes requests natively to /v1/messages using httpx instead of AsyncOpenAI
- Auto-translates internal ThinkingConfig to Anthropic schema
- Updates .env.example with model routing instructions
- Adjusts test suite for new native integration
2026-03-08 08:17:05 -07:00

5 lines
129 B
Python

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