ralph-workflow 0.7.18

PROMPT-driven multi-agent orchestrator for git repos
Documentation
1
2
3
4
5
6
7
8
use std::cell::RefCell;
use std::collections::HashMap;

pub type PromptHistoryCell = RefCell<HashMap<String, crate::prompts::PromptHistoryEntry>>;

pub fn create_prompt_history_cell() -> PromptHistoryCell {
    RefCell::new(HashMap::new())
}