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