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.
#![allow(warnings)]
mod config;
mod core;
mod executors;
mod i18n;
mod pipeline;
mod prompts;
mod skill_loader;
mod skill_scheduler;
mod tasks;
mod workflow;

pub use crate::config::*;
pub use crate::core::*;
pub use crate::executors::registry;
pub use crate::pipeline::*;
pub use crate::skill_loader::*;
pub use crate::skill_scheduler::*;
pub use crate::tasks::*;
pub use crate::workflow::*;
pub use langhub::types::ModelProvider;