mirror of
https://github.com/headroomlabs-ai/headroom.git
synced 2026-08-27 14:17:10 -04:00
8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
import { source } from '@/lib/source';
|
|
import { llms } from 'fumadocs-core/source';
|
|
|
|
export const revalidate = false;
|
|
|
|
export function GET() {
|
|
return new Response(llms(source).index());
|
|
}
|