← All integrations
// integration

Multi-agent teams on Google Gemini

Gemini via the native Google GenAI SDK — one extra install, 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.' },
]

// npm install @google/genai — then set GEMINI_API_KEY in the environment.
const oma = new OpenMultiAgent({ defaultProvider: 'gemini', defaultModel: 'gemini-2.5-pro' })
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.

Gemini is a built-in provider on the native Google GenAI SDK; it needs the peer dependency @google/genai. As with every provider, agents can mix Gemini with Claude, GPT, or a local model in one 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