mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-05 07:08:03 +00:00
fix types
This commit is contained in:
parent
21ab1dc675
commit
dd0faab07e
@ -2629,7 +2629,7 @@ async def test_tool_ainvoke_does_not_mutate_inputs() -> None:
|
||||
func=sync_no_op,
|
||||
)
|
||||
|
||||
tool_call = {
|
||||
tool_call: ToolCall = {
|
||||
"name": "sample_tool",
|
||||
"args": {"foo": 2},
|
||||
"id": "call_0_82c17db8-95df-452f-a4c2-03f809022134",
|
||||
@ -2677,7 +2677,7 @@ def test_tool_invoke_does_not_mutate_inputs() -> None:
|
||||
func=sync_no_op,
|
||||
)
|
||||
|
||||
tool_call = {
|
||||
tool_call: ToolCall = {
|
||||
"name": "sample_tool",
|
||||
"args": {"foo": 2},
|
||||
"id": "call_0_82c17db8-95df-452f-a4c2-03f809022134",
|
||||
|
Loading…
Reference in New Issue
Block a user