Spaces:
Running
Running
""" | |
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() | |