hippox 0.5.5

🦛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
//! Pipeline module for two-stage execution
//!
//! Stage One: Core workflow execution, outputs standard JSON
//! Stage Two: Format conversion based on user's structure requirements

pub(crate) mod core;
pub(crate) mod detector;
pub(crate) mod intent;
pub(crate) mod types;

pub(crate) use core::*;
pub(crate) use detector::*;
pub(crate) use intent::*;
pub(crate) use types::*;