Spaces:
Running
Running
File size: 354 Bytes
5679415 |
1 2 3 4 5 6 7 8 9 |
import type { Config } from "./Config";
export async function getConfig(modelName: string): Promise<Config> {
const configUrl = `https://huggingface.co/datasets/dylanebert/3d-arena/resolve/main/outputs/${modelName}/config.json`;
const configResponse = await fetch(configUrl);
const config = await configResponse.json();
return config;
}
|