File size: 213 Bytes
41e4cda
 
c5ed979
 
41e4cda
86abf3b
c5ed979
 
41e4cda
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr

user_name = ''

def greet(name):
    global user_name
    user_name += name
    return "Hello " + user_name + "!!"

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