Dynamically creating tool chains #28117
ragrawal
announced in
Ask Dosu (Archived)
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all, I am trying to develop a general purpose chatbot that can have bunch of tools. I would like llm to automatically determine the right sequence of tools to call dependency. My problem is that it seems that llm understands the general strategy but I don't see right tools in tool_calls. Below is an example
Example of showing the strategy
Outcome
Executing the strategy
Output
[{'name': 'get_item_id', 'args': {'item_name': 'xyz'}, 'id': 'call_tNrdUKQvtDC6C3pdPvWcSYzs', 'type': 'tool_call'}]
Any idea why the strategy explained by the LLM looks correct but tool_calls doesn't contain both the tools
Beta Was this translation helpful? Give feedback.
All reactions