hippox 0.5.6

🦛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.
pub(crate) mod batch;
pub(crate) mod batch_with_categories;
pub(crate) mod chain;
pub(crate) mod chain_with_categories;
pub(crate) mod identity;
pub(crate) mod intent_parser;
pub(crate) mod plan_and_execute;
pub(crate) mod plan_and_execute_with_categories;
pub(crate) mod react;
pub(crate) mod react_with_categories;
pub(crate) mod registry;
pub(crate) mod skill_md;
pub(crate) mod response_formatting;

pub(crate) use batch::*;
pub(crate) use batch_with_categories::*;
pub(crate) use chain::*;
pub(crate) use chain_with_categories::*;
pub(crate) use identity::*;
pub(crate) use intent_parser::*;
pub(crate) use plan_and_execute::*;
pub(crate) use plan_and_execute_with_categories::*;
pub(crate) use react::*;
pub(crate) use react_with_categories::*;
pub(crate) use registry::*;
pub(crate) use skill_md::*;
pub(crate) use response_formatting::*;