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
12
13
14
15
16
17
//! Response formatting prompt templates

/// Build format conversion prompt (without format specification)
pub fn build_format_conversion_prompt(original_input: &str, json_output: &str) -> String {
    format!(
        r##"
Convert the JSON below to the format requested by the user.

## User Request (check for format requirements)
{}
## JSON Result
{}
## Output ONLY the converted result. No explanations.
"##,
        original_input, json_output
    )
}