ai-hackaton-backend/rag/__init__.py

5 lines
134 B
Python

from .llm import ChatModel, EmbeddingsModel
from .service import RagService
__all__ = ["RagService", "ChatModel", "EmbeddingsModel"]