File size: 340 Bytes
3d66487 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
"""
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",
]
|