File size: 499 Bytes
6a46e44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""
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()