UNPKG

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.

5 lines (4 loc) 204 B
import { VectorMemoryRecord } from "../vectorMemoryProviders/vectorMemoryProvider.js"; export interface Retriever { retrieve(query: string, options?: any): Promise<string[] | VectorMemoryRecord[]>; }