ctviewer / app.py
Matthew Danish
add app file
41db7b8
raw
history blame
143 Bytes
import gradio as gr
def greet(name):
return f'Hello {name}!'
iface = gr.Interface(fn=greet, inputs='text', outputs='text')
iface.launch()