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.

10 lines (9 loc) 304 B
export declare class LRUCacheHelper { private cache; constructor(maxEntries?: number, ttlMs?: number); get(key: string): string | undefined; set(key: string, value: string): void; has(key: string): boolean; clear(): void; } export declare function getToolCache(): LRUCacheHelper;