hippox 0.5.8

🦛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 i18n;
mod pipeline;
mod prompts;
mod tasks;
mod workflow;

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

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test() {
        println!("8")
    }
}