hippox 0.7.15

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

pub use crate::common::*;
pub use crate::config::*;
pub use crate::core::*;
pub use crate::driver_scheduler::*;
pub use crate::pipeline::*;
pub use crate::signalbus::*;
pub use crate::tasks::*;
pub use crate::workflow::*;

pub use hippox_drivers::registry::*;
pub use hippox_drivers::result::DriverResult;
pub use hippox_drivers::types::Driver;
pub use hippox_drivers::types::DriverCall;
pub use hippox_drivers::types::DriverCallback;
pub use hippox_drivers::types::DriverContext;
pub use hippox_drivers::types::DriverMetadata;
pub use hippox_drivers::types::DriverParameter;
pub use langhub::types::ModelProvider;