Skip to content

Commit 5315f14

Browse files
committed
fix
1 parent d920b8e commit 5315f14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/agentlab/agents/generic_agent_hinter/generic_agent_prompt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def get_hints_for_task(self, task_name: str) -> str:
378378
task_hints = self.hints_source.choose_hints(self.llm, task_name, self.goal)
379379

380380
hints = []
381-
for hint in task_hints["hint"]:
381+
for hint in task_hints:
382382
hint = hint.strip()
383383
if hint:
384384
hints.append(f"- {hint}")

0 commit comments

Comments
 (0)