|
/**
|
|
* Verifica se o orquestrador e todos os agentes carregam corretamente.
|
|
*/
|
|
|
|
import { AgentOrchestrator } from '../orchestrator/AgentOrchestrator.js';
|
|
|
|
const o = new AgentOrchestrator();
|
|
console.log('Agents:', o.agents.map((a) => a.name).join(', '));
|