Configuration parameters for the orchestrator
Configured ArvoOrchestrator instance ready for event handling
const orchestrator = createArvoOrchestrator({
memory: new SimpleMachineMemory(),
machines: [userOnboardingMachine, paymentMachine]
});
// Process events
const result = await orchestrator.execute(event);
Creates a new Arvo orchestrator instance with default components.
Factory function that constructs an orchestrator with standard execution engine and registry implementations. Validates that all machines share the same source identifier and have unique versions.