hope_agents 0.3.7

HOPE Agents: Hierarchical Optimizing Policy Engine for AIngle AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Hierarchical goal decomposition and management for HOPE agents.
//!
//! This module provides sophisticated goal management capabilities including:
//! - Automatic goal decomposition using rules
//! - Hierarchical goal trees with dependencies
//! - Conflict detection and resolution
//! - Progress tracking and propagation

mod decomposition;
mod goal_solver;
#[cfg(test)]
mod tests;

pub use decomposition::*;
pub use goal_solver::*;