RunTasking / app.py
wasmdashai's picture
Update app.py
4a3c8fc verified
raw
history blame
193 Bytes
import gradio as gr
GK=0
def greet(name):
global GK
while True:
GK+=1
return f"namber is {GK}"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()