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.
8 lines (7 loc) • 318 B
TypeScript
import { Retriever } from "./retrieval.interface.js";
import { BaseRetriever } from "@langchain/core/retrievers";
export declare class LangChainRetrieverAdapter implements Retriever {
private langChainRetriever;
constructor(langChainRetriever: BaseRetriever);
retrieve(query: string): Promise<string[]>;
}