local-rag-chatbot / ui /__init__.py
Julien Simon
fix: Address code review security and quality issues
1521cd2
Raw
History Blame Contribute Delete
322 Bytes
"""UI components for the Gradio application."""
from .app import create_app
from .components import create_ui_components
from .handlers import create_respond_handler, create_stream_chat_response
__all__ = [
"create_app",
"create_respond_handler",
"create_stream_chat_response",
"create_ui_components",
]