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