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.
12 lines (11 loc) • 739 B
TypeScript
export declare const baseModelTokenLimits: Record<string, number>;
export declare function normalizeOutput(text: string): string;
export declare function checkDelegate(output: string): boolean;
export declare function checkTool(output: string): boolean;
export declare function interpolateTemplate(template: string, context: Record<string, any>): string;
export declare function normalizeInput(input: string): string;
export declare function cleanMarkdownJson(raw: string): string;
export declare function parseCSV(output: string): any[];
export declare function parseXML(output: string): any;
export declare function cleanFinalContext(finalContext: any): any;
export declare function getSafeReplacer(): (_key: string, value: any) => any;