12 lines
489 B
JavaScript
12 lines
489 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.formatDocumentsAsString = void 0;
|
|
/**
|
|
* Given a list of documents, this util formats their contents
|
|
* into a string, separated by newlines.
|
|
*
|
|
* @param documents
|
|
* @returns A string of the documents page content, separated by newlines.
|
|
*/
|
|
const formatDocumentsAsString = (documents) => documents.map((doc) => doc.pageContent).join("\n\n");
|
|
exports.formatDocumentsAsString = formatDocumentsAsString;
|