01What is open-multi-agent?
open-multi-agent is YuanASI's own open-source multi-agent orchestration engine. It's TypeScript-native: hand a goal to the Coordinator and it decomposes it into a task DAG at runtime, which a deterministic scheduler then executes in parallel. The core API is a single runTeam(team, goal) call.
It has just 3 runtime dependencies (@anthropic-ai/sdk, openai, zod); everything else is opt-in. It drops into any Node.js backend with no Python runtime. It ships with built-in support for Anthropic, OpenAI, Grok, DeepSeek, Doubao, Hunyuan, MiniMax, Qwen, Zhipu and more, and can run fully offline against local models via Ollama or vLLM. MIT-licensed; install with npm install @open-multi-agent/core.