Spaces:
Sleeping
Sleeping
| # 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' | |
| ] | |