hippox 0.6.0

🦛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
9
10
11
12
13
14
15
16
17
18
#![allow(warnings)]
mod common;
mod config;
mod core;
mod i18n;
mod pipeline;
mod prompts;
mod tasks;
mod workflow;

pub use crate::common::*;
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;