Spaces:
Build error
Build error
File size: 498 Bytes
6b08db7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # -*- coding: utf-8 -*-
"""
Hugging Face Spaces App Entry Point
Quantum LIMIT-Graph v2.4.0 NSN Integration Dashboard
"""
import sys
import os
# Add current directory to path
sys.path.insert(0, os.path.dirname(__file__))
from huggingface_dashboard import create_gradio_interface
# Create and launch the dashboard
demo = create_gradio_interface()
if __name__ == '__main__':
demo.launch(
server_name="0.0.0.0",
server_port=7860,
share=False
)
|