Oracle_Wikipage / app.py
Sujithanumala's picture
Update app.py
1e156c7 verified
raw
history blame
144 Bytes
import gradio as gr
def greet(name):
return f"Hello {name}"
iface = gr.Interface(fn = greet,inputs = "text",outputs = "text")
iface.launch()