
# defines the agent

(define react-ablation-agent

    (:states 
        (thought
            (:text "Thought:")
        )
        (ablation-observation
            (:text "Observation:")
            (:flags :env-input)
        )
        (final-thought
            (:text "Final Thought:")
        )
    )
    
    (:behavior
        (until_3
            (next thought ablation-observation)
            final-thought)
    )

)
