vid / app.py
kos9's picture
Update app.py
6f9384c verified
import gradio as gr
def hello(name):
return f"Γεια σου, {name}!"
gr.Interface(fn=hello, inputs="text", outputs="text").launch()