Thomas G. Lopes
custom rule
7357f85
raw
history blame
276 Bytes
import type { ModelWithTokenizer } from "$lib/types.js";
import type { PageLoad } from "./$types.js";
export const load: PageLoad = async ({ fetch }) => {
const res = await fetch("/api/models");
const models: ModelWithTokenizer[] = await res.json();
return { models };
};