-
Notifications
You must be signed in to change notification settings - Fork 846
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
[refactor] Agent Classes & Parallel function calling for LLM Agent #965
Conversation
Your Render PR Server URL is https://superagent-pr-965.onrender.com. Follow its progress at https://dashboard.render.com/web/srv-coga6tsf7o1s73b2huf0. |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
…'browser' in workflow prompts
…if tool calling is supported
Native Function Calling
24a0904
to
d19296c
Compare
Summary
This PR refactors AgentBase, LangchainAgent, LLMAgent.
As well, I have added parallel function calling using native OpenAI function calling instead of relying Langchain implementation. Previously, parallel function calling was not working, because we were setting return_direct to True and we were always returning the first function call before even calling the second or so on.