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