Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
import { base } from "$app/paths"; | |
import type { Client } from "@gradio/client"; | |
export type ApiReturnType = Awaited<ReturnType<typeof Client.prototype.view_api>>; | |
export async function getGradioApi(space: string) { | |
const api: ApiReturnType = await fetch(`${base}/api/spaces-config?space=${space}`).then((res) => | |
res.json() | |
); | |
return api; | |
} | |