Rename: nlg → elp (Engram Language Protocol)

This commit is contained in:
Will Anderson
2026-05-02 22:15:25 -05:00
parent 4945e8e8c5
commit c4e173fa2a
125 changed files with 129214 additions and 780 deletions
+14
View File
@@ -0,0 +1,14 @@
// lang-grc.el - Ancient Greek NLG tests
// Expected: "ὁ ἄνθρωπος ὁράει τὸν κύνα." / "ὁ ἄνθρωπος ἐστί καλός."
fn test_assert() -> String {
return sem_realize(sem_frame_lang("assert", "ho anthropos", "horao", "", "grc"))
}
fn test_question() -> String {
return sem_realize(sem_frame_lang("query", "ho anthropos", "horao", "", "grc"))
}
fn test_describe() -> String {
return sem_realize(sem_frame_lang("describe", "ho anthropos", "kalos", "", "grc"))
}
println(test_assert())
println(test_question())
println(test_describe())