25 lines
558 B
Python
25 lines
558 B
Python
"""LLM Provider Adapters
|
|
|
|
Adapter module for various LLM API formats.
|
|
|
|
Adapter types:
|
|
- OpenAIAdapter: OpenAI/DeepSeek/GLM compatible APIs
|
|
- AnthropicAdapter: Anthropic Claude API
|
|
|
|
Usage:
|
|
from luxx.services.llm_adapters import OpenAIAdapter, AnthropicAdapter
|
|
|
|
adapter = OpenAIAdapter()
|
|
# Or use LLMClient for automatic selection
|
|
"""
|
|
|
|
from .base import ProviderAdapter
|
|
from .openai_adapter import OpenAIAdapter
|
|
from .anthropic_adapter import AnthropicAdapter
|
|
|
|
__all__ = [
|
|
"ProviderAdapter",
|
|
"OpenAIAdapter",
|
|
"AnthropicAdapter",
|
|
]
|