TdAI / llama.cpp /tools /ui /src /routes /(chat) /+page.ts
tda45's picture
Upload folder using huggingface_hub (part 8)
15c3607 verified
Raw
History Blame Contribute Delete
174 Bytes
import type { PageLoad } from './$types';
import { validateApiKey } from '$lib/utils';
export const load: PageLoad = async ({ fetch }) => {
await validateApiKey(fetch);
};