File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -90,11 +90,11 @@ def complex_function_list_dict(
90
90
raise ValueError ("Wrong param" )
91
91
92
92
93
- def repetive_call_1 (param : str ):
94
- return f"Call repetive_call_2 tool with param { param + '_repetive ' } "
93
+ def repetitive_call_1 (param : str ):
94
+ return f"Call repetitive_call_2 tool with param { param + '_repetitive ' } "
95
95
96
96
97
- def repetive_call_2 (param : str ):
97
+ def repetitive_call_2 (param : str ):
98
98
return param
99
99
100
100
@@ -194,8 +194,8 @@ def repetive_call_2(param: str):
194
194
list_str_param_function ,
195
195
return_list_str_function ,
196
196
# complex_function_list_dict,
197
- repetive_call_1 ,
198
- repetive_call_2 ,
197
+ repetitive_call_1 ,
198
+ repetitive_call_2 ,
199
199
test_case_retrieval ,
200
200
valid_rag_retrieval ,
201
201
invalid_rag_retrieval ,
Original file line number Diff line number Diff line change @@ -106,12 +106,12 @@ def test_complex_function_calls_success(agent_runner: TestRunner):
106
106
[{"agent" : tool_agent .agent .root_agent }],
107
107
indirect = True ,
108
108
)
109
- def test_repetive_call_success (agent_runner : TestRunner ):
109
+ def test_repetitive_call_success (agent_runner : TestRunner ):
110
110
_call_function_and_assert (
111
111
agent_runner ,
112
- "repetive_call_1 " ,
112
+ "repetitive_call_1 " ,
113
113
"test" ,
114
- "test_repetive " ,
114
+ "test_repetitive " ,
115
115
)
116
116
117
117
You can’t perform that action at this time.
0 commit comments