Spaces:
Sleeping
Sleeping
File size: 312 Bytes
d5ea245 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#!/usr/bin/env python3
"""
Convenience script to run the Face Matcher Gradio application
"""
import sys
from pathlib import Path
# Add src directory to Python path
sys.path.insert(0, str(Path(__file__).parent.parent / "src"))
from face_matcher.ui.gradio_app import main
if __name__ == "__main__":
main()
|