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
//! Core engine module for Hippox

pub mod builder;
pub mod hippox;
pub mod tasks;

pub use builder::*;
pub use hippox::Hippox;