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.

15 lines (14 loc) 436 B
import { z } from "zod"; export declare const TaskOrderSchema: z.ZodObject<{ tasks: z.ZodArray<z.ZodString, "many">; }, "strip", z.ZodTypeAny, { tasks: string[]; }, { tasks: string[]; }>; export declare const TaskOrderJsonSchema: import("zod-to-json-schema").JsonSchema7Type & { $schema?: string | undefined; definitions?: { [key: string]: import("zod-to-json-schema").JsonSchema7Type; } | undefined; };