Skip to content
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
merged 64 commits into from
Apr 3, 2025

Conversation

twishabansal
Copy link
Contributor

@twishabansal twishabansal commented Apr 2, 2025

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 the parse_docstring=True flag in its constructor or the from_function class method. parse_docstring is False by default.

Without parse_docstring=True, LangChain might rely solely on type hints or fail to extract the detailed parameter descriptions provided in the Args: section of the docstring.

image

New:

def get_product_info (product_name: str) -> Dict[str, Any]:
"""
Get the stock amount and identifier for a given product

Args:
    product_name (str): Product name
"""

Old:

def get_product_info (product_name: str) -> Dict[str, Any]:
"""
Get the stock amount and identifier for a given product
"""

@twishabansal twishabansal requested a review from kurtisvg April 2, 2025 08:30
@twishabansal twishabansal marked this pull request as ready for review April 2, 2025 08:31
@twishabansal twishabansal requested a review from a team as a code owner April 2, 2025 08:31
twishabansal and others added 5 commits April 2, 2025 14:02
@kurtisvg kurtisvg changed the title fix: Changed function docstrings to include args and their descriptions feat(toolbox-core): updated generated docstring to include parameters and their descriptions Apr 2, 2025
Base automatically changed from twisha-core-e2e to main April 3, 2025 05:43
@twishabansal twishabansal requested a review from kurtisvg April 3, 2025 06:57
@twishabansal twishabansal merged commit eafe2e9 into main Apr 3, 2025
14 checks passed
@twishabansal twishabansal deleted the twisha-core-docstring branch April 3, 2025 15:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants