1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//! # Terraphim Knowledge Graph Orchestration Engine
//!
//! A knowledge graph-based agent orchestration system that coordinates multi-agent workflows
//! using intelligent task decomposition, agent matching, and execution planning.
//!
//! ## Core Features
//!
//! - **Simple Agent Model**: Trait-based agents with clear capabilities
//! - **Task Decomposition Integration**: Uses terraphim_task_decomposition for intelligent task breakdown
//! - **Knowledge Graph Coordination**: Leverages knowledge graphs for agent-task matching
//! - **Execution Management**: Handles dependencies, parallel execution, and result aggregation
//! - **Fault Tolerance**: Basic error handling and recovery mechanisms
//!
//! ## Architecture
//!
//! The orchestration engine consists of several key components:
//!
//! - **Agent Pool**: Registry of available agents with their capabilities
//! - **Task Scheduler**: Decomposes complex tasks and schedules execution
//! - **Execution Coordinator**: Manages task execution, dependencies, and parallelism
//! - **Result Aggregator**: Combines results from multiple agents into coherent outputs
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
// Re-export key types from task decomposition
pub use ;
/// Result type for orchestration operations
pub type OrchestrationResult<T> = ;