aiostreams / packages /docs /src /lib /source.ts
f4b404's picture
Upload folder using huggingface_hub
f55c62a verified
Raw
History Blame Contribute Delete
661 Bytes
import { docs } from 'fumadocs-mdx:collections/server';
import { type InferPageType, loader } from 'fumadocs-core/source';
// See https://fumadocs.dev/docs/headless/source-api for more info
export const source = loader({
baseUrl: '/',
source: docs.toFumadocsSource(),
plugins: [],
});
export function getPageImage(page: InferPageType<typeof source>) {
const segments = [...page.slugs, 'image.webp'];
return {
segments,
url: `/og/${segments.join('/')}`,
};
}
export async function getLLMText(page: InferPageType<typeof source>) {
const processed = await page.data.getText('processed');
return `# ${page.data.title}
${processed}`;
}