← All integrations
// integration

Multi-agent teams on DeepSeek

DeepSeek as a built-in provider — OpenAI-compatible, one env var.

Enterprise support
01 setup

A minimal setup.

import { OpenMultiAgent, type AgentConfig } from '@open-multi-agent/core'

const agents: AgentConfig[] = [
  { name: 'researcher', systemPrompt: 'Gather the key facts.' },
  { name: 'writer', systemPrompt: 'Write a tight summary.' },
]

// Set DEEPSEEK_API_KEY in the environment.
const oma = new OpenMultiAgent({ defaultProvider: 'deepseek', defaultModel: 'deepseek-v4-flash' })
const team = oma.createTeam('brief', { name: 'brief', agents })
const result = await oma.runTeam(team, 'Summarize the latest release notes.')
console.log(result.success)
02 how it fits

How it fits.

DeepSeek ships as a built-in shortcut around its OpenAI-compatible endpoint, so the config is just the provider name and a key. It’s a common pick for the cheap, high-volume steps in a mixed-model team.

// Enterprise

Taking this to production?

open-multi-agent is MIT-licensed and free to run yourself. When you need it delivered, integrated, or supported on a deadline, 元定义科技 (YuanASI) offers commercial delivery and support.

Enterprise support