ralph-workflow 0.7.18

PROMPT-driven multi-agent orchestrator for git repos
Documentation
1
2
3
4
5
6
7
8
9
10
//! Template engine for rendering prompt templates.
//!
//! This module provides a template variable replacement system for prompt templates
//! with support for variables, partials, comments, conditionals, loops, and defaults.
//!
//! The imperative parsing and rendering code lives in the runtime/ boundary module
//! to satisfy the functional programming lints.

pub type Template = crate::prompts::runtime::Template;
pub type TemplateError = crate::prompts::template_registry::TemplateError;