Spaces:
Running
Running
Update index.js
Browse files
index.js
CHANGED
|
@@ -213,8 +213,7 @@ async function loadLlm() {
|
|
| 213 |
const oauthHeaders = {
|
| 214 |
"Authorization": `Bearer ${oauthResult.accessToken}`
|
| 215 |
};
|
| 216 |
-
|
| 217 |
-
await delay(10000);
|
| 218 |
const response = await fetch(modelUrl, {headers: oauthHeaders});
|
| 219 |
if (response.ok) {
|
| 220 |
const responseStream = await response.body;
|
|
|
|
| 213 |
const oauthHeaders = {
|
| 214 |
"Authorization": `Bearer ${oauthResult.accessToken}`
|
| 215 |
};
|
| 216 |
+
|
|
|
|
| 217 |
const response = await fetch(modelUrl, {headers: oauthHeaders});
|
| 218 |
if (response.ok) {
|
| 219 |
const responseStream = await response.body;
|