Skip to content

Commit d11f27e

Browse files
committed
test
1 parent 19244e1 commit d11f27e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/adapters/test_tool.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,10 @@ def get_weather(city: str) -> str:
559559
def add_numbers(a: int, b: int) -> int:
560560
return a + b
561561

562-
tools = [dspy.Tool(get_weather), dspy.Tool(add_numbers)]
562+
tools = [
563+
dspy.Tool(get_weather),
564+
dspy.Tool(add_numbers)
565+
]
563566

564567
tool_call = dspy.ToolCalls.ToolCall(name="get_weather", args={"city": "Berlin"})
565568
result = tool_call.execute(functions=tools)

0 commit comments

Comments
 (0)