llamaindex
Version:
<p align="center"> <img height="100" width="100" alt="LlamaIndex logo" src="https://ts.llamaindex.ai/square.svg" /> </p> <h1 align="center">LlamaIndex.TS</h1> <h3 align="center"> Data framework for your LLM application. </h3>
8 lines (7 loc) • 357 B
TypeScript
import type { BaseNode } from "@llamaindex/core/schema";
import type { BaseDocumentStore } from "@llamaindex/core/storage/doc-store";
export declare function classify(docStore: BaseDocumentStore, nodes: BaseNode[]): Promise<{
dedupedNodes: BaseNode<import("@llamaindex/core/schema").Metadata>[];
missingDocs: string[];
unusedDocs: string[];
}>;