stanford-test-1 / app.py
tushark11235's picture
Create app.py
ac3425e
raw
history blame
147 Bytes
import gradio as gr
def greet(name):
return "Hello: + name + "!"
iface = gr.Interface(fn=greet, inputs="text",outputs="text" )
iface.launch()