malvin 0.1.6

Non-interactive CLI agent, via Cursor ACP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[derive(Debug, Clone)]
pub enum MultiturnPrompt {
    KpopBlock(String),
}

impl MultiturnPrompt {
    #[must_use]
    pub const fn as_str(&self) -> &str {
        match self {
            Self::KpopBlock(s) => s.as_str(),
        }
    }
}

#[cfg(test)]
#[path = "multiturn_prompt_tests.rs"]
mod multiturn_prompt_tests;