import type { InferPageType } from 'fumadocs-core/source' import type { source } from '@/lib/source' export async function getLLMText(page: InferPageType) { const processed = await page.data.getText('processed') return `# ${page.data.title} (${page.url}) ${processed}` }