Spaces:
Running
Running
File size: 316 Bytes
b499397 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
"""
Entry point for DescribePDF Hugging Face Space.
This file imports and launches the Gradio UI from the original package.
"""
from describepdf.ui import create_ui, launch_app
# Create the Gradio interface
app = create_ui()
# This will be used by Gradio when deployed
if __name__ == "__main__":
app.launch()
|