Yoma
Initial HF Spaces deployment without chroma_db
625e9e8
raw
history blame contribute delete
201 Bytes
"""
Entry point for Hugging Face Spaces deployment.
This file imports and launches the main Gradio chatbot application.
"""
from chatbot_app import demo
if __name__ == "__main__":
demo.launch()