merge dev into main #49

Merged
8464960 merged 430 commits from dev into main 2026-01-28 10:49:15 +00:00
Showing only changes of commit 625ef0c365 - Show all commits

View File

@@ -172,8 +172,9 @@ class AgentSpeakGenerator:
)
context = [from_phase_ast]
if from_phase and from_phase.goals:
context.append(self._astify(from_phase.goals[-1], achieved=True))
if from_phase:
for goal in from_phase.goals:
context.append(self._astify(goal, achieved=True))
body = [
AstStatement(StatementType.REMOVE_BELIEF, from_phase_ast),