9 lines
141 B
Python
9 lines
141 B
Python
"""
|
|
LLM module
|
|
Provides a unified OpenAI-compatible client for the Insight Engine.
|
|
"""
|
|
|
|
from .base import LLMClient
|
|
|
|
__all__ = ["LLMClient"]
|