Files
bettafish-company/InsightEngine/llms/__init__.py
T

9 lines
141 B
Python

"""
LLM module
Provides a unified OpenAI-compatible client for the Insight Engine.
"""
from .base import LLMClient
__all__ = ["LLMClient"]