Update app.py
Browse files
app.py
CHANGED
@@ -32,10 +32,25 @@ def warmer():
|
|
32 |
print("NO INTERNET")
|
33 |
print(str(e))
|
34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
def placeholder(dummy):
|
36 |
return "lol"
|
37 |
|
38 |
t = Thread(target=warmer)
|
|
|
39 |
t.start()
|
40 |
|
41 |
iface = gr.Interface(fn=placeholder, inputs="text", outputs="text")
|
|
|
32 |
print("NO INTERNET")
|
33 |
print(str(e))
|
34 |
|
35 |
+
def restart():
|
36 |
+
while True:
|
37 |
+
try:
|
38 |
+
text_output,image_output = client.predict(
|
39 |
+
"atleiwarm0003", # str in 'message' Textbox component
|
40 |
+
"", # str (filepath or URL to image) in 'Upload any Image' Image component
|
41 |
+
api_name="/predict"
|
42 |
+
)
|
43 |
+
print("RESTARTED")
|
44 |
+
time.sleep(60) #Restart Space every 24 hours
|
45 |
+
except Exception as e:
|
46 |
+
print("NO INTERNET")
|
47 |
+
print(str(e))
|
48 |
+
|
49 |
def placeholder(dummy):
|
50 |
return "lol"
|
51 |
|
52 |
t = Thread(target=warmer)
|
53 |
+
r = Thread(target=restart)
|
54 |
t.start()
|
55 |
|
56 |
iface = gr.Interface(fn=placeholder, inputs="text", outputs="text")
|