-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix issue #606: Fixed wrong parameter name. toolcalling_agent.yaml st… #618
Conversation
…ent.yaml states that the argument to be given in the call is called 'request' and not 'task'. Name also changed on agent test
Thank you for pointing this error! The fix should be to change everything to task rather than request, that's the final parameter name used elsewhere! So here it's the prompt that's faulty, not the code. |
Thnak you, I modified the prompt file so the argument´'s name is "task" and not "request". |
Sorry, I fixed the typo just now |
Co-authored-by: Aymeric Roucher <[email protected]>
…en_deep_research (huggingface#636) Co-authored-by: Aymeric Roucher <[email protected]>
Co-authored-by: Alex <[email protected]> Co-authored-by: Parteek <[email protected]> Co-authored-by: Albert Villanova del Moral <[email protected]> Co-authored-by: David Berenstein <[email protected]>
@faev999 the PR has some conflicts now. Could you rebase please? |
…ent.yaml states that the argument to be given in the call is called 'request' and not 'task'. Name also changed on agent test
…lagents into bugfix/issue-606-fix
…ent.yaml states that the argument to be given in the call is called 'request' and not 'task'. Name also changed on agent test
…lagents into bugfix/issue-606-fix
Done |
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
Sounds good! sorry for the delay |
FIXES #606:
"I am trying to create a manger agent of type ToolCallingAgent, by simply modifying the multi-agents example available on the docs, but instead of a CodeAgent I use the ToolCallingAgent as the manager agent."
Fixed wrong parameter name "task".
toolcalling_agent.yaml
states that the argument to be given in the call is called 'request' and not 'task'. Name also changed intest_agents.py