Spaces:
Running
Running
Update index.html
Browse files- index.html +1 -1
index.html
CHANGED
|
@@ -576,7 +576,7 @@
|
|
| 576 |
* @returns {Promise<Array<{id: string, name: string, modelPath: string, classesPath: string}>>}
|
| 577 |
*/
|
| 578 |
async function loadRegistry() {
|
| 579 |
-
const response = await fetch('
|
| 580 |
if (!response.ok) throw new Error(`Không thể tải registry: ${response.status}`);
|
| 581 |
const data = await response.json();
|
| 582 |
return data.models;
|
|
|
|
| 576 |
* @returns {Promise<Array<{id: string, name: string, modelPath: string, classesPath: string}>>}
|
| 577 |
*/
|
| 578 |
async function loadRegistry() {
|
| 579 |
+
const response = await fetch('models/registry.json');
|
| 580 |
if (!response.ok) throw new Error(`Không thể tải registry: ${response.status}`);
|
| 581 |
const data = await response.json();
|
| 582 |
return data.models;
|