hippox 0.7.16

🦛A reliable, autonomous LLM runtime and skill orchestration engine, Capable of processing natural language and automatically executing OS-native atomic skills, fundamentally enabling the LLM to truly take over the computer.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 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 core;
mod event_bus;
mod executor;

pub use api::*;
pub use core::*;
pub use event_bus::*;
pub use executor::ExecutableTask;
pub use executor::TaskStateUpdater;
pub use executor::get_state_updater;