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.

4 lines (3 loc) 90 B
export interface EmbeddingProvider { getEmbedding(text: string): Promise<number[]>; }