Spaces:
Running
Running
Commit
·
db72027
1
Parent(s):
a876792
Removed the parts about the data being lost during rebuild which we (hopefully) have just solved
Browse files- hf_server.js +3 -3
hf_server.js
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* All rights reserved.
|
4 |
*/
|
5 |
//@ts-check
|
6 |
-
const VERSION = '0.6.0.hf.014.
|
7 |
|
8 |
const express = require('express');
|
9 |
const http = require('http');
|
@@ -263,10 +263,10 @@ function getButtonsString(buttonsHTML)
|
|
263 |
let connectionStatusMessage;
|
264 |
if (global.CONNECTED_TO_MASTER)
|
265 |
{
|
266 |
-
connectionStatusMessage = '<div>You are now connected DIRECTLY to the REFERENCE Omnitool Space on Huggingface.</div><div style="color: red;">It is HIGHLY recommended that you duplicate this space and make it private to secure your keys, recipes and outputs.</div><div>When DUPLICATING the Space, consider choosing the 20 Gig option to persist keys, recipes and outputs between server restarts
|
267 |
} else
|
268 |
{
|
269 |
-
connectionStatusMessage = `<div style="color: green;">You are now connected to the space ${global.LOCAL_URL}.</div><div style="color: red;">If this is NOT yours, it is HIGHLY recommended that you duplicate this space and make it private to secure your keys, recipes and outputs.</div><div>When DUPLICATING the Space, consider choosing the 20 Gig option to persist keys, recipes and outputs between server restarts
|
270 |
}
|
271 |
|
272 |
return `
|
|
|
3 |
* All rights reserved.
|
4 |
*/
|
5 |
//@ts-check
|
6 |
+
const VERSION = '0.6.0.hf.014.l';
|
7 |
|
8 |
const express = require('express');
|
9 |
const http = require('http');
|
|
|
263 |
let connectionStatusMessage;
|
264 |
if (global.CONNECTED_TO_MASTER)
|
265 |
{
|
266 |
+
connectionStatusMessage = '<div>You are now connected DIRECTLY to the REFERENCE Omnitool Space on Huggingface.</div><div style="color: red;">It is HIGHLY recommended that you duplicate this space and make it private to secure your keys, recipes and outputs.</div><div>When DUPLICATING the Space, consider choosing the 20 Gig option to persist keys, recipes and outputs between server restarts.</div>';
|
267 |
} else
|
268 |
{
|
269 |
+
connectionStatusMessage = `<div style="color: green;">You are now connected to the space ${global.LOCAL_URL}.</div><div style="color: red;">If this is NOT yours, it is HIGHLY recommended that you duplicate this space and make it private to secure your keys, recipes and outputs.</div><div>When DUPLICATING the Space, consider choosing the 20 Gig option to persist keys, recipes and outputs between server restarts.</div>`;
|
270 |
}
|
271 |
|
272 |
return `
|