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.
1
2
3
4
5
6
7
8
9
10
11
use crate::prompts::{generate_instances_registry, generate_skills_registry};

pub fn build_skill_md_prompt(instructions: &str) -> String {
    let skills_registry = generate_skills_registry();
    let instances_registry = generate_instances_registry();

    format!(
        "{}\n\n## Available Atomic Skills\n{}\n\n## Available Instances\n{}\n\n## Task\nExecute the workflow step by step according to the instructions above.",
        instructions, skills_registry, instances_registry
    )
}