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.

11 lines (10 loc) 235 B
export interface TrainingExample { initialOutput: string; humanFeedback: string; improvedOutput: string; } export interface AgentTrainingResult { suggestions: string[]; quality: number; final_summary: string; }