tourism-api / app /models /__init__.py
phamluan's picture
Deploy RAG Tourism API
54c816a verified
Raw
History Blame Contribute Delete
291 Bytes
"""Pydantic models package for the RAG Tourism Recommender API."""
from .stt_models import (
STTSegment,
STTTranscriptionResponse,
STTServiceInfo,
STTHealthCheck,
)
__all__ = [
"STTSegment",
"STTTranscriptionResponse",
"STTServiceInfo",
"STTHealthCheck",
]