Chatbot-RAG-v4 / models /__init__.py
NoeMartinezSanchez
Descripción de tus cambios
4fa1e6b
raw
history blame contribute delete
198 Bytes
"""Models module for chatbot with LLM support."""
from models.gemma_wrapper import GemmaWrapper
from models.tinyllama_wrapper import TinyLlamaWrapper
__all__ = ["TinyLlamaWrapper", "GemmaWrapper"]