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