File size: 294 Bytes
4e37375
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
"""API模块

包含应用程序的API接口和用户界面。
"""

from .gradio_interface import GradioInterface, get_gradio_interface, create_demo_interface, gradio_interface

__all__ = [
    "GradioInterface",
    "get_gradio_interface",
    "create_demo_interface",
    "gradio_interface"
]