OSINT / src /osint_env /llm /__init__.py
ritishshrirao's picture
Update LLM interface, add multi agent data generation,
d6fbf54
raw
history blame contribute delete
298 Bytes
"""LLM interface package."""
from osint_env.llm.interface import (
LLMClient,
LLMResponse,
OllamaLLMClient,
OpenAILLMClient,
RuleBasedMockLLM,
build_llm_client,
)
__all__ = [
"LLMClient",
"LLMResponse",
"RuleBasedMockLLM",
"OllamaLLMClient",
"OpenAILLMClient",
"build_llm_client",
]