-
Suppose you create: root_agent = LlmAgent(..., planner=PlanReActPlanner(), tools=[fetch_more_information], ...) And the tool is: def fetch_more_information(...):
""" Always use this tool to get more information before refining a plan.
Unfortunately you have to plan->use this tool->refine plan for it to work.
"""
return info_for_decision_making Can the planner access the tool? |
Beta Was this translation helpful? Give feedback.
Answered by
boyangsvl
May 3, 2025
Replies: 1 comment
-
Yes, the planner will come up with a plan that may use the tool if needed. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
boyangsvl
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, the planner will come up with a plan that may use the tool if needed.