agsamantha/node_modules/@langchain/community/dist/retrievers/metal.d.ts

37 lines
1.3 KiB
TypeScript
Raw Normal View History

2024-10-02 15:15:21 -05:00
import Metal from "@getmetal/metal-sdk";
import { BaseRetriever, BaseRetrieverInput } from "@langchain/core/retrievers";
import { Document } from "@langchain/core/documents";
/**
* Interface for the fields required during the initialization of a
* `MetalRetriever` instance. It extends the `BaseRetrieverInput`
* interface and adds a `client` field of type `Metal`.
*/
export interface MetalRetrieverFields extends BaseRetrieverInput {
client: Metal;
}
/**
* Class used to interact with the Metal service, a managed retrieval &
* memory platform. It allows you to index your data into Metal and run
* semantic search and retrieval on it. It extends the `BaseRetriever`
* class and requires a `Metal` instance and a dictionary of parameters to
* pass to the Metal API during its initialization.
* @example
* ```typescript
* const retriever = new MetalRetriever({
* client: new Metal(
* process.env.METAL_API_KEY,
* process.env.METAL_CLIENT_ID,
* process.env.METAL_INDEX_ID,
* ),
* });
* const docs = await retriever.getRelevantDocuments("hello");
* ```
*/
export declare class MetalRetriever extends BaseRetriever {
static lc_name(): string;
lc_namespace: string[];
private client;
constructor(fields: MetalRetrieverFields);
_getRelevantDocuments(query: string): Promise<Document[]>;
}