-
Notifications
You must be signed in to change notification settings - Fork 9
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
feat(toolbox-core): updated generated docstring to include parameters and their descriptions #127
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* ci: add release please config * chore: add initial version * chore: specify initial version as string * chore: Update .release-please-manifest.json * chore: add empty json * chore: small change * chore: try fixing config * chore: try fixing config again * chore: remove release-as * chore: add changelog sections * chore: better release notes * chore: better release notes * chore: change toolbox-langchain version * chore: separate PRs for packages * chore: change PR style
# Conflicts: # packages/toolbox-core/src/toolbox_core/tool.py
anubhav756
reviewed
Apr 2, 2025
anubhav756
approved these changes
Apr 2, 2025
kurtisvg
requested changes
Apr 2, 2025
# Conflicts: # packages/toolbox-core/tests/test_e2e.py
kurtisvg
approved these changes
Apr 3, 2025
This was referenced Apr 3, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR updates the docstring for generated functions to include information about the tools parameters provided by toolbox. Orchestration frameworks (such as LangChain) sometimes parse function docstrings to automatically extract information about the tool's parameters, including their names, types, and descriptions.
Note
To ensure LangChain correctly parses these newly added parameter descriptions when creating a tool, you must instantiate the
StructuredTool
using theparse_docstring=True
flag in its constructor or thefrom_function
class method.parse_docstring
isFalse
by default.Without
parse_docstring=True
, LangChain might rely solely on type hints or fail to extract the detailed parameter descriptions provided in theArgs:
section of the docstring.New:
Old: