We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26f0abb commit 5393a34Copy full SHA for 5393a34
src/agentlab/agents/generic_agent_hinter/generic_agent_prompt.py
@@ -108,10 +108,11 @@ def time_for_caution():
108
self.be_cautious = dp.BeCautious(visible=time_for_caution)
109
self.think = dp.Think(visible=lambda: flags.use_thinking)
110
self.hints = dp.Hints(visible=lambda: flags.use_hints)
111
+ goal_str: str = goal[0]["text"]
112
self.task_hint = TaskHint(
113
use_task_hint=flags.use_task_hint,
114
hint_db_path=flags.hint_db_path,
- goal=goal,
115
+ goal=goal_str,
116
hint_retrieval_mode=flags.task_hint_retrieval_mode,
117
llm=llm,
118
skip_hints_for_current_task=flags.skip_hints_for_current_task,
0 commit comments