Spaces:
Running
on
L40S
Running
on
L40S
Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ def eat_memory():
|
|
13 |
time.sleep(0.1)
|
14 |
|
15 |
def greet(name):
|
16 |
-
return "Secret length" + len(os.environ.get("LONGSECRET"))
|
17 |
|
18 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
19 |
iface.launch(ssr_mode=True)
|
|
|
13 |
time.sleep(0.1)
|
14 |
|
15 |
def greet(name):
|
16 |
+
return "Secret length" + str(len(os.environ.get("LONGSECRET")))
|
17 |
|
18 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
19 |
iface.launch(ssr_mode=True)
|