ktx/packages/context/src/wiki/knowledge-search-text.ts
2026-05-10 23:12:26 +02:00

7 lines
264 B
TypeScript

export function buildKnowledgeSearchText(blockKey: string, summary: string, content: string, tags?: string[]): string {
const parts = [blockKey, summary, content];
if (tags && tags.length > 0) {
parts.push(tags.join(' '));
}
return parts.join('\n');
}