test2 / app.py
bgloh's picture
Update app.py
74efcae verified
raw
history blame contribute delete
281 Bytes
import gradio as gr
def greet(name, age):
return f"Hello {name}!! You are {age} years old."
iface = gr.Interface(
fn=greet,
inputs=[gr.Textbox(label="Name"), gr.Number(label="Age")],
outputs="text"
)
iface.launch(share=True) # Use share=True for remote access