Launch Gradio OCR demo
(*args, **kwargs)
| 17 | |
| 18 | # Lazy import for demo interfaces to avoid initialization on import |
| 19 | def launch_openocr_demo(*args, **kwargs): |
| 20 | """Launch Gradio OCR demo""" |
| 21 | from .demo_gradio import launch_demo |
| 22 | return launch_demo(*args, **kwargs) |
| 23 | |
| 24 | def launch_unirec_demo(*args, **kwargs): |
| 25 | """Launch UniRec demo""" |
nothing calls this directly
no test coverage detected