llman 0.0.30

A tool for managing LLM application rules(prompts) ...
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub const LLMANSPEC_DIR_NAME: &str = "llmanspec";
pub const LLMANSPEC_CONFIG_FILE: &str = "config.yaml";

pub struct MarkerPair {
    pub start: &'static str,
    pub end: &'static str,
}

pub const LLMANSPEC_MARKERS: MarkerPair = MarkerPair {
    start: "<!-- LLMANSPEC:START -->",
    end: "<!-- LLMANSPEC:END -->",
};