UNPKG

mongodb-chatbot-server

Version:

A chatbot server for retrieval augmented generation (RAG).

13 lines (12 loc) 441 B
import { MakeReferenceLinksFunc } from "./MakeReferenceLinksFunc"; /** The default reference format returns the following for chunks from _unique_ pages: ```js { title: chunk.metadata.pageTitle ?? chunk.url, // if title doesn't exist, just put url url: chunk.url // this always exists } ``` */ export declare const makeDefaultReferenceLinks: MakeReferenceLinksFunc; //# sourceMappingURL=makeDefaultReferenceLinks.d.ts.map