NLProxy / nlproxy /llm /__init__.py
Luiserb's picture
first commit
2129c29
Raw
History Blame Contribute Delete
467 Bytes
"""LLM client package for NLProxy.
This package exposes the language model client layer and provider-specific
integration points for generating content and verifying responses.
Author: IntelliDeep Labs Team
License: BSL 1.1
"""
from .client import (
LLMOrchestrator,
LLMProvider,
LLMRequest,
LLMResponse,
LLMProviderError,
)
__all__ = [
"LLMOrchestrator",
"LLMProvider",
"LLMRequest",
"LLMResponse",
"LLMProviderError",
]