File size: 267 Bytes
ca70154 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# app.py
import gradio as gr
def greet_nationality(name):
nationality = 'somewhere'
return f"Hello {name}!!\n Your name seems to be from {nationality}. Am I right?"
iface = gr.Interface(fn=greet_nationality, inputs="text", outputs="text")
iface.launch()
|