Spaces:
Sleeping
Sleeping
| """ | |
| Main application launcher for Hugging Face deployment | |
| """ | |
| import os | |
| from mcp_server import create_mcp_interface | |
| # Hugging Face configuration | |
| os.environ.setdefault("HF_TOKEN", os.environ.get("HF_TOKEN")) | |
| os.environ.setdefault("DATASET_ID", "HackathonCRA/2024") | |
| if __name__ == "__main__": | |
| demo = create_mcp_interface() | |
| demo.launch( | |
| mcp_server=True, | |
| server_name="0.0.0.0", | |
| server_port=7860, | |
| share=True | |
| ) |