Fix progressive hints in CLI simulator for first failed attempt
Removed "attempts > 0" check in research/guarded_ai.py that prevented hints from showing on the first attempt. Matches the fix made to activity.py for consistent behavior across web app and CLI simulator.
This commit is contained in:
parent
3df402505c
commit
653c72020c
1 changed files with 1 additions and 1 deletions
|
|
@ -752,7 +752,7 @@ def simulate_activity(yaml_file_path):
|
|||
# End of multi-bucket processing loop
|
||||
|
||||
# Check for progressive hints (v2.0)
|
||||
if "hints" in step and attempts > 0:
|
||||
if "hints" in step:
|
||||
hint_context = create_template_context(
|
||||
metadata=metadata,
|
||||
current_attempt=attempts + 1, # Next attempt
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue