Arden
1 program
Added 2025-10-22T15:22:09Z
Model: anthropic/claude-3.5-sonnetTemp: 0.4
Evidence
Report issue
View issues
Aliases: Arden Syntax, Arden Syntax for Medical Logic Modules
Provenance: commit 9fbc0cbfe2 · authored 2025-10-22T17:22:09+02:00 · model anthropic/claude-3.5-sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Hemoglobin A1C Alert MLM
Provenance: commit 9fbc0cbfe2 · authored 2025-10-22T17:22:09+02:00 · model anthropic/claude-3.5-sonnet · Temp 0.4
maintenance:
title: Check HbA1c levels;;
mlmname: a1c_check;;
arden: version 2.5;;
version: 1.00;;
institution: Example Healthcare;;
author: John Smith;
specialist: ;;
date: 2017-01-01;;
validation: testing;;
library:
purpose: Emits an alert when HbA1c is greater than 8%;
explanation: High HbA1c levels indicate poor glycemic control;
keywords: diabetes; HbA1c; alert;;
citations: ;;
links: ;;
knowledge:
type: data_driven;;
data:
last_hba1c := read last ({HBA1C});
;;
evoke: data_driven;;
logic:
if last_hba1c is not null and
last_hba1c > 8 then
alert_text := "HbA1c level is " || last_hba1c || "%";
return true;
endif;
return false;
;;
action:
write alert_text;;