Try to fix multiple ListAgents steps

This commit is contained in:
Laine
2025-04-17 09:19:29 -04:00
parent dddd2977b9
commit 247bac0a28
3 changed files with 4 additions and 3 deletions

View File

@@ -187,7 +187,7 @@ def generate_pick_new_goal_guidance()-> str:
str: A prompt string prompting the LLM to when to go to pick-new-goal
"""
if is_multi_goal_mode():
return 'Next should only be "pick-new-goal" if all tools have been run (use the system prompt to figure that out) or the user explicitly requested to pick a new goal.'
return 'Next should only be "pick-new-goal" if all tools have been run (use the system prompt to figure that out) or the user explicitly requested to pick a new goal. If next is "pick-new-goal" the tool should always be "ListAgents"'
else:
return 'Next should never be "pick-new-goal".'