rag-bajaj / LLM /__init__.py
quantumbit's picture
Upload 39 files
e8051be verified
raw
history blame contribute delete
335 Bytes
# LLM Handler Package
from .llm_handler import llm_handler
from .tabular_answer import get_answer_for_tabluar
from .image_answerer import get_answer_for_image
from .one_shotter import get_oneshot_answer
__all__ = [
'llm_handler',
'get_answer_for_tabluar',
'get_answer_for_image',
'get_oneshot_answer'
]