"""Main application entry point for the LLMs.txt Gradio application.""" from app.controllers.gradio_controller import create_gradio_interface from app.utils.logging_config import setup_logging setup_logging() # NOTE: MUST be defined as a global variable for HuggingFace Spaces to work demo = create_gradio_interface() if __name__ == "__main__": demo.launch(mcp_server=True)