File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lib/parsers/src/tool_calling Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ pub fn try_tool_call_parse_pythonic(
121121
122122 let tool_response = parse_tool_calls ( & matches[ 0 ] ) ;
123123
124- Ok ( ( tool_response?, Some ( String :: new ( ) ) ) ) // TODO: Add support for normal text
124+ Ok ( ( tool_response?, Some ( String :: new ( ) ) ) ) // TODO: Add support for normal text
125125}
126126
127127#[ cfg( test) ]
@@ -139,7 +139,7 @@ mod tests {
139139 let ( result, _) = try_tool_call_parse_pythonic ( message) . unwrap ( ) ;
140140 assert ! ( !result. is_empty( ) ) ;
141141 assert_eq ! ( result. len( ) , 2 ) ;
142- let ( name, args) = extract_name_and_args ( result[ 0 ] . clone ( ) ) ; // TODO: Add support for normal text
142+ let ( name, args) = extract_name_and_args ( result[ 0 ] . clone ( ) ) ; // TODO: Add support for normal text
143143 assert_eq ! ( name, "foo" ) ;
144144 assert_eq ! ( args[ "a" ] , "1" ) ;
145145 assert_eq ! ( args[ "b" ] , "2" ) ;
You can’t perform that action at this time.
0 commit comments