claude-flow
Version:
Enterprise-grade AI agent orchestration with WASM-powered ReasoningBank memory and AgentDB vector database (always uses latest agentic-flow)
20 lines (15 loc) • 622 B
text/typescript
/**
* Execution Layer - Agentic-Flow Integration
* Entry point for multi-provider agent execution
*/
export { AgentExecutor, type AgentExecutionOptions, type AgentExecutionResult } from './agent-executor.js';
export { ProviderManager, type ProviderConfig, type ExecutionConfig } from './provider-manager.js';
// Convenience exports
import { AgentExecutor } from './agent-executor.js';
import { ProviderManager } from './provider-manager.js';
export function createExecutor(hooksManager?: any) {
return new AgentExecutor(hooksManager);
}
export function createProviderManager() {
return new ProviderManager();
}