#!/usr/bin/env python3 """ HuggingFace Space entry point for mcp-civil-compliance """ import sys import os # Add current directory to path sys.path.insert(0, os.path.dirname(__file__)) # Import and launch the Gradio app from gradio_app import demo if __name__ == "__main__": demo.launch()