Spaces:
Running on Zero
Running on Zero
| """ | |
| main.py | |
| βββββββ | |
| Top-level entry point for the Docling PDF Processor demo. | |
| Run from the project root: | |
| python main.py # launch the Gradio demo | |
| python main.py --help # see available options | |
| This is a thin wrapper around the unified CLI's `app` command, so it | |
| shares the same logging and configuration behavior as `app` and | |
| `python -m docling_pdf_processor`. | |
| """ | |
| from docling_pdf_processor.cli import app_command | |
| if __name__ == "__main__": | |
| app_command() |