imagedt / app.py
AbuAmirx's picture
Create app.py
f46bbf3 verified
raw
history blame contribute delete
158 Bytes
import gradio as gr
def greet(name):
return f"Hello {name}!"
iface = gr.Interface(
fn=greet,
inputs="text",
outputs="text"
)
iface.launch()