OSINT / src /osint_env /llm /__init__.py
siddeshwar-kagatikar
fix(rewards): never crash GRPO on malformed completions
d814291
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",
]