Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -3,7 +3,8 @@ GK=0
|
|
| 3 |
|
| 4 |
def greet(name):
|
| 5 |
global GK
|
| 6 |
-
|
|
|
|
| 7 |
return f"namber is {GK}"
|
| 8 |
|
| 9 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
|
|
|
| 3 |
|
| 4 |
def greet(name):
|
| 5 |
global GK
|
| 6 |
+
while True:
|
| 7 |
+
GK+=1
|
| 8 |
return f"namber is {GK}"
|
| 9 |
|
| 10 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|