hippox 0.6.1

🦛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
use hippox_drivers::{Driver, get_driver_by_name, list_drivers_names};
use std::sync::Arc;

pub fn get_driver(name: &str) -> Option<Arc<dyn Driver>> {
    get_driver_by_name(name)
}

pub fn list_drivers() -> Vec<String> {
    list_drivers_names()
}