File size: 420 Bytes
39b7ef4
 
 
55a6d9c
39b7ef4
55a6d9c
39b7ef4
55a6d9c
 
39b7ef4
 
361a48f
39b7ef4
5a47de1
39b7ef4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# SecureLens - Hugging Face Spaces Entry Point
# Launches the enhanced 5-tab interface with TRUE FHE

import os
import sys

# Ensure the project root is in the path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))

# Import the enhanced demo from the full app
from app_gradio_enhanced_FOR_HF import demo

if __name__ == "__main__":
    demo.queue()
    demo.launch(server_name="0.0.0.0", server_port=7860)