taskforce-aiagent
Version:
TaskForce is a modular, open-source, production-ready TypeScript agent framework for orchestrating AI agents, LLM-powered autonomous agents, task pipelines, dynamic toolchains, RAG workflows and memory/retrieval systems.
13 lines (12 loc) • 487 B
TypeScript
import { VectorMemoryProvider, VectorMemoryRecord } from "../vectorMemoryProviders/vectorMemoryProvider.js";
import { Retriever } from "./retrieval.interface.js";
export declare class LocalVectorRetriever implements Retriever {
private provider;
constructor(provider: VectorMemoryProvider);
retrieve(query: string, options?: {
limit?: number;
raw?: boolean;
agent?: string;
taskId?: string;
}): Promise<string[] | VectorMemoryRecord[]>;
}