describepdf / app.py
David
Setup DescribePDF for Hugging Face Space
b499397
raw
history blame
316 Bytes
"""
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()