ECLIPSE / app.py
Shruthi34's picture
Create app.py
64ae2f3 verified
raw
history blame
129 Bytes
import gradio as gr
def greet(name):
return f"Hello {name}"
gr.Interface(fn=greet, inputs="text", outputs="text").launch()