mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
8 lines
177 B
Python
8 lines
177 B
Python
|
import gradio as gr
|
||
|
|
||
|
def greet(name):
|
||
|
return "Hello " + name + "!"
|
||
|
|
||
|
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
||
|
if __name__ == "__main__":
|
||
|
iface.launch()
|