File size: 142 Bytes
0fdae33
6f9384c
a5db580
6f9384c
 
a5db580
6f9384c
1
2
3
4
5
6
7
8

import gradio as gr

def hello(name):
    return f"Γεια σου, {name}!"

gr.Interface(fn=hello, inputs="text", outputs="text").launch()