Upload folder using huggingface_hub
Browse files- server/quantum_ui.html +2 -2
server/quantum_ui.html
CHANGED
|
@@ -412,7 +412,7 @@
|
|
| 412 |
hideMessages();
|
| 413 |
|
| 414 |
try {
|
| 415 |
-
const response = await fetch('/
|
| 416 |
method: 'POST',
|
| 417 |
headers: { 'Content-Type': 'application/json' },
|
| 418 |
body: JSON.stringify({ task_id: taskId })
|
|
@@ -472,7 +472,7 @@
|
|
| 472 |
hideMessages();
|
| 473 |
|
| 474 |
try {
|
| 475 |
-
const response = await fetch('/
|
| 476 |
method: 'POST',
|
| 477 |
headers: { 'Content-Type': 'application/json' },
|
| 478 |
body: JSON.stringify(action)
|
|
|
|
| 412 |
hideMessages();
|
| 413 |
|
| 414 |
try {
|
| 415 |
+
const response = await fetch('/reset', {
|
| 416 |
method: 'POST',
|
| 417 |
headers: { 'Content-Type': 'application/json' },
|
| 418 |
body: JSON.stringify({ task_id: taskId })
|
|
|
|
| 472 |
hideMessages();
|
| 473 |
|
| 474 |
try {
|
| 475 |
+
const response = await fetch('/step', {
|
| 476 |
method: 'POST',
|
| 477 |
headers: { 'Content-Type': 'application/json' },
|
| 478 |
body: JSON.stringify(action)
|