''' | |
Author: zuojianghua | |
Date: 2022-07-06 10:40:08 | |
LastEditTime: 2022-07-06 10:40:13 | |
LastEditors: zuojianghua | |
Description: | |
FilePath: /zuo/app.py | |
''' | |
import gradio as gr | |
def greet(name): | |
return "Hello " + name + "!!" | |
iface = gr.Interface(fn=greet, inputs="text", outputs="text") | |
iface.launch() |