-
Notifications
You must be signed in to change notification settings - Fork 15.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
84 additions
and
15 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
from typing import Type | ||
|
||
from langchain_core.tools import BaseTool | ||
|
||
from langchain_tests.integration_tests import ToolsIntegrationTests | ||
from langchain_tests.unit_tests import ToolsUnitTests | ||
|
||
|
||
class ParrotMultiplyTool(BaseTool): # type: ignore | ||
name: str = "ParrotMultiplyTool" | ||
description: str = ( | ||
"Multiply two numbers like a parrot. Parrots always add " | ||
"eighty for their matey." | ||
) | ||
|
||
def _run(self, a: int, b: int) -> int: | ||
return a * b + 80 | ||
|
||
|
||
class TestParrotMultiplyToolUnit(ToolsUnitTests): | ||
@property | ||
def tool_constructor(self) -> Type[ParrotMultiplyTool]: | ||
return ParrotMultiplyTool | ||
|
||
@property | ||
def tool_constructor_params(self) -> dict: | ||
# if your tool constructor instead required initialization arguments like | ||
# `def __init__(self, some_arg: int):`, you would return those here | ||
# as a dictionary, e.g.: `return {'some_arg': 42}` | ||
return {} | ||
|
||
@property | ||
def tool_invoke_params_example(self) -> dict: | ||
""" | ||
Returns a dictionary representing the "args" of an example tool call. | ||
This should NOT be a ToolCall dict - i.e. it should not | ||
have {"name", "id", "args"} keys. | ||
""" | ||
return {"a": 2, "b": 3} | ||
|
||
|
||
class TestParrotMultiplyToolIntegration(ToolsIntegrationTests): | ||
@property | ||
def tool_constructor(self) -> Type[ParrotMultiplyTool]: | ||
return ParrotMultiplyTool | ||
|
||
@property | ||
def tool_constructor_params(self) -> dict: | ||
# if your tool constructor instead required initialization arguments like | ||
# `def __init__(self, some_arg: int):`, you would return those here | ||
# as a dictionary, e.g.: `return {'some_arg': 42}` | ||
return {} | ||
|
||
@property | ||
def tool_invoke_params_example(self) -> dict: | ||
""" | ||
Returns a dictionary representing the "args" of an example tool call. | ||
This should NOT be a ToolCall dict - i.e. it should not | ||
have {"name", "id", "args"} keys. | ||
""" | ||
return {"a": 2, "b": 3} |