pub fn expand_template(content: &str, vars: &HashMap<String, String>) -> StringExpand description
Replace {{VARIABLE}} placeholders in content with values from vars.
Placeholders that have no corresponding key in vars are left unchanged
(the original {{VARIABLE}} text is preserved).
Mirrors expandTemplate() in frontend/app/view/agent/agent-model.ts.