minimal / app.py
thedevvikas's picture
Added app.py
ba92632
raw
history blame
122 Bytes
import gradio as gr
def greet(name): return f"Hello {name}"
gr.Interface(fn=greet, inputs="text", outputs="text").launch()