testing / old_app.py
zohairy's picture
adding model and updating app
6de4e86
raw
history blame contribute delete
146 Bytes
import gradio as gr
def greet(name):
return f"Hello {name}!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()