Spaces:
Running
Running
| """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", | |
| ] | |