The Big One #43

Merged
k.marinus merged 93 commits from feat/reset-experiment-and-phase into dev 2026-01-26 19:20:45 +00:00
Showing only changes of commit 625ef0c365 - Show all commits

View File

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