Spaces:
Running
Running
File size: 664 Bytes
ba907cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
"""
API routes module initialization.
This module provides easy imports for all API route handlers.
"""
from .upload_routes import upload_pdf_handler
from .chat_routes import chat_handler
from .session_routes import (
get_chat_history_handler,
clear_history_handler,
remove_pdf_handler
)
from .utility_routes import (
root_handler,
get_models_handler
)
__all__ = [
# Upload routes
"upload_pdf_handler",
# Chat routes
"chat_handler",
# Session routes
"get_chat_history_handler",
"clear_history_handler",
"remove_pdf_handler",
# Utility routes
"root_handler",
"get_models_handler"
]
|