llms-txt-mcp / src /main.py
shern
almost camera ready
1c9e323
raw
history blame contribute delete
383 Bytes
"""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)