anfastech's picture
Fix: Added protobuf>=3.20.0 to requirements.txt in the Core ML section.
3d66487
raw
history blame contribute delete
340 Bytes
"""
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",
]