Files
MemShellParty/web/app/llms/full.ts
T
2026-03-30 21:55:55 +08:00

8 lines
231 B
TypeScript

import { getLLMText, source } from '@/lib/source';
export async function loader() {
const scan = source.getPages().map(getLLMText);
const scanned = await Promise.all(scan);
return new Response(scanned.join('\n\n'));
}