File size: 226 Bytes
142ad12
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
// hf-space/src/lib/knowledge/parser/text.ts

import type { ParsedDocument } from './index';

export async function parseText(buffer: Buffer): Promise<ParsedDocument> {
  return {
    content: buffer.toString('utf-8'),
  };
}