hippox 0.5.0

🦛A reliable AI agent and skills orchestration runtime engine.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Task management module for Hippox core
//!
//! This module provides a GLOBAL static task pool (independent of Hippox instances)
//! with automatic background execution engine that starts at program load.

mod api;
mod engine;
mod executor;
mod types;

pub use api::*;
pub use executor::ExecutableTask;
pub use executor::TaskStateUpdater;
pub use types::*;