| """ | |
| UI package for speech pathology diagnosis. | |
| This package contains user interface components including Gradio interface. | |
| """ | |
| from .gradio_interface import ( | |
| create_gradio_interface, | |
| launch_gradio_interface, | |
| analyze_speech | |
| ) | |
| __all__ = [ | |
| "create_gradio_interface", | |
| "launch_gradio_interface", | |
| "analyze_speech", | |
| ] | |