export const orchestrationAgent = new Agent({
id: 'orchestration-agent',
name: 'Orchestration Agent',
description: `Main orchestration agent that can orchestrate other agents.`,
instructions: `
You are a main orchestration agent that can orchestrate other agents.
You can run:
- weatherAgent to get weather information
- mathAgent to sum two numbers
`,
model: DEFAULT_MODEL,
agents: {
weatherAgent,
mathAgent,
},
….
export const orchestrationAgent = new Agent({
id: 'orchestration-agent',
name: 'Orchestration Agent',
description: `Main orchestration agent that can orchestrate other agents.`,
instructions: `
You are a main orchestration agent that can orchestrate other agents.
You can run:
- weatherAgent to get weather information
- mathAgent to sum two numbers
`,
model: DEFAULT_MODEL,
agents: {
weatherAgent,
mathAgent,
},
….