forked from OpenHands/OpenHands
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtest_llm_fncall_converter.py
More file actions
1090 lines (1019 loc) Β· 45.9 KB
/
test_llm_fncall_converter.py
File metadata and controls
1090 lines (1019 loc) Β· 45.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""Test for FunctionCallingConverter."""
import copy
import json
import pytest
from litellm import ChatCompletionToolParam
from openhands.llm.fn_call_converter import (
IN_CONTEXT_LEARNING_EXAMPLE_PREFIX,
IN_CONTEXT_LEARNING_EXAMPLE_SUFFIX,
TOOL_EXAMPLES,
FunctionCallConversionError,
convert_fncall_messages_to_non_fncall_messages,
convert_from_multiple_tool_calls_to_single_tool_call_messages,
convert_non_fncall_messages_to_fncall_messages,
convert_tool_call_to_string,
convert_tools_to_description,
get_example_for_tools,
)
FNCALL_TOOLS: list[ChatCompletionToolParam] = [
{
'type': 'function',
'function': {
'name': 'execute_bash',
'description': 'Execute a bash command in the terminal.\n* Long running commands: For commands that may run indefinitely, it should be run in the background and the output should be redirected to a file, e.g. command = `python3 app.py > server.log 2>&1 &`.\n* Interactive: If a bash command returns exit code `-1`, this means the process is not yet finished. The assistant must then send a second call to terminal with an empty `command` (which will retrieve any additional logs), or it can send additional text (set `command` to the text) to STDIN of the running process, or it can send command=`ctrl+c` to interrupt the process.\n* Timeout: If a command execution result says "Command timed out. Sending SIGINT to the process", the assistant should retry running the command in the background.\n',
'parameters': {
'type': 'object',
'properties': {
'command': {
'type': 'string',
'description': 'The bash command to execute. Can be empty to view additional logs when previous exit code is `-1`. Can be `ctrl+c` to interrupt the currently running process.',
}
},
'required': ['command'],
},
},
},
{
'type': 'function',
'function': {
'name': 'finish',
'description': 'Finish the interaction when the task is complete OR if the assistant cannot proceed further with the task.',
},
},
{
'type': 'function',
'function': {
'name': 'str_replace_editor',
'description': 'Custom editing tool for viewing, creating and editing files\n* State is persistent across command calls and discussions with the user\n* If `path` is a file, `view` displays the result of applying `cat -n`. If `path` is a directory, `view` lists non-hidden files and directories up to 2 levels deep\n* The `create` command cannot be used if the specified `path` already exists as a file\n* If a `command` generates a long output, it will be truncated and marked with `<response clipped>`\n* The `undo_edit` command will revert the last edit made to the file at `path`\n\nNotes for using the `str_replace` command:\n* The `old_str` parameter should match EXACTLY one or more consecutive lines from the original file. Be mindful of whitespaces!\n* If the `old_str` parameter is not unique in the file, the replacement will not be performed. Make sure to include enough context in `old_str` to make it unique\n* The `new_str` parameter should contain the edited lines that should replace the `old_str`\n',
'parameters': {
'type': 'object',
'properties': {
'command': {
'description': 'The commands to run. Allowed options are: `view`, `create`, `str_replace`, `insert`, `undo_edit`.',
'enum': [
'view',
'create',
'str_replace',
'insert',
'undo_edit',
],
'type': 'string',
},
'path': {
'description': 'Absolute path to file or directory, e.g. `/repo/file.py` or `/repo`.',
'type': 'string',
},
'file_text': {
'description': 'Required parameter of `create` command, with the content of the file to be created.',
'type': 'string',
},
'old_str': {
'description': 'Required parameter of `str_replace` command containing the string in `path` to replace.',
'type': 'string',
},
'new_str': {
'description': 'Optional parameter of `str_replace` command containing the new string (if not given, no string will be added). Required parameter of `insert` command containing the string to insert.',
'type': 'string',
},
'insert_line': {
'description': 'Required parameter of `insert` command. The `new_str` will be inserted AFTER the line `insert_line` of `path`.',
'type': 'integer',
},
'view_range': {
'description': 'Optional parameter of `view` command when `path` points to a file. If none is given, the full file is shown. If provided, the file will be shown in the indicated line number range, e.g. [11, 12] will show lines 11 and 12. Indexing at 1 to start. Setting `[start_line, -1]` shows all lines from `start_line` to the end of the file.',
'items': {'type': 'integer'},
'type': 'array',
},
},
'required': ['command', 'path'],
},
},
},
]
def test_convert_tools_to_description():
formatted_tools = convert_tools_to_description(FNCALL_TOOLS)
print(formatted_tools)
assert (
formatted_tools.strip()
== """---- BEGIN FUNCTION #1: execute_bash ----
Description: Execute a bash command in the terminal.
* Long running commands: For commands that may run indefinitely, it should be run in the background and the output should be redirected to a file, e.g. command = `python3 app.py > server.log 2>&1 &`.
* Interactive: If a bash command returns exit code `-1`, this means the process is not yet finished. The assistant must then send a second call to terminal with an empty `command` (which will retrieve any additional logs), or it can send additional text (set `command` to the text) to STDIN of the running process, or it can send command=`ctrl+c` to interrupt the process.
* Timeout: If a command execution result says "Command timed out. Sending SIGINT to the process", the assistant should retry running the command in the background.
Parameters:
(1) command (string, required): The bash command to execute. Can be empty to view additional logs when previous exit code is `-1`. Can be `ctrl+c` to interrupt the currently running process.
---- END FUNCTION #1 ----
---- BEGIN FUNCTION #2: finish ----
Description: Finish the interaction when the task is complete OR if the assistant cannot proceed further with the task.
No parameters are required for this function.
---- END FUNCTION #2 ----
---- BEGIN FUNCTION #3: str_replace_editor ----
Description: Custom editing tool for viewing, creating and editing files
* State is persistent across command calls and discussions with the user
* If `path` is a file, `view` displays the result of applying `cat -n`. If `path` is a directory, `view` lists non-hidden files and directories up to 2 levels deep
* The `create` command cannot be used if the specified `path` already exists as a file
* If a `command` generates a long output, it will be truncated and marked with `<response clipped>`
* The `undo_edit` command will revert the last edit made to the file at `path`
Notes for using the `str_replace` command:
* The `old_str` parameter should match EXACTLY one or more consecutive lines from the original file. Be mindful of whitespaces!
* If the `old_str` parameter is not unique in the file, the replacement will not be performed. Make sure to include enough context in `old_str` to make it unique
* The `new_str` parameter should contain the edited lines that should replace the `old_str`
Parameters:
(1) command (string, required): The commands to run. Allowed options are: `view`, `create`, `str_replace`, `insert`, `undo_edit`.
Allowed values: [`view`, `create`, `str_replace`, `insert`, `undo_edit`]
(2) path (string, required): Absolute path to file or directory, e.g. `/repo/file.py` or `/repo`.
(3) file_text (string, optional): Required parameter of `create` command, with the content of the file to be created.
(4) old_str (string, optional): Required parameter of `str_replace` command containing the string in `path` to replace.
(5) new_str (string, optional): Optional parameter of `str_replace` command containing the new string (if not given, no string will be added). Required parameter of `insert` command containing the string to insert.
(6) insert_line (integer, optional): Required parameter of `insert` command. The `new_str` will be inserted AFTER the line `insert_line` of `path`.
(7) view_range (array, optional): Optional parameter of `view` command when `path` points to a file. If none is given, the full file is shown. If provided, the file will be shown in the indicated line number range, e.g. [11, 12] will show lines 11 and 12. Indexing at 1 to start. Setting `[start_line, -1]` shows all lines from `start_line` to the end of the file.
---- END FUNCTION #3 ----""".strip()
)
def test_get_example_for_tools_no_tools():
"""Test that get_example_for_tools returns empty string when no tools are available."""
tools = []
example = get_example_for_tools(tools)
assert example == ''
def test_get_example_for_tools_single_tool():
"""Test that get_example_for_tools generates correct example with a single tool."""
tools = [
{
'type': 'function',
'function': {
'name': 'execute_bash',
'description': 'Execute a bash command in the terminal.',
'parameters': {
'type': 'object',
'properties': {
'command': {
'type': 'string',
'description': 'The bash command to execute.',
}
},
'required': ['command'],
},
},
}
]
example = get_example_for_tools(tools)
assert example.startswith(
"Here's a running example of how to perform a task with the provided tools."
)
assert (
'USER: Create a list of numbers from 1 to 10, and display them in a web page at port 5000.'
in example
)
assert TOOL_EXAMPLES['execute_bash']['check_dir'] in example
assert TOOL_EXAMPLES['execute_bash']['run_server'] in example
assert TOOL_EXAMPLES['execute_bash']['kill_server'] in example
assert TOOL_EXAMPLES['str_replace_editor']['create_file'] not in example
assert TOOL_EXAMPLES['browser']['view_page'] not in example
assert TOOL_EXAMPLES['finish']['example'] not in example
def test_get_example_for_tools_single_tool_is_finish():
"""Test get_example_for_tools with only the finish tool."""
tools = [
{
'type': 'function',
'function': {
'name': 'finish',
'description': 'Finish the interaction when the task is complete.',
},
}
]
example = get_example_for_tools(tools)
assert example.startswith(
"Here's a running example of how to perform a task with the provided tools."
)
assert (
'USER: Create a list of numbers from 1 to 10, and display them in a web page at port 5000.'
in example
)
assert TOOL_EXAMPLES['finish']['example'] in example
assert TOOL_EXAMPLES['execute_bash']['check_dir'] not in example
assert TOOL_EXAMPLES['str_replace_editor']['create_file'] not in example
assert TOOL_EXAMPLES['browser']['view_page'] not in example
def test_get_example_for_tools_multiple_tools():
"""Test that get_example_for_tools generates correct example with multiple tools."""
tools = [
{
'type': 'function',
'function': {
'name': 'execute_bash',
'description': 'Execute a bash command in the terminal.',
'parameters': {
'type': 'object',
'properties': {
'command': {
'type': 'string',
'description': 'The bash command to execute.',
}
},
'required': ['command'],
},
},
},
{
'type': 'function',
'function': {
'name': 'str_replace_editor',
'description': 'Custom editing tool for viewing, creating and editing files.',
'parameters': {
'type': 'object',
'properties': {
'command': {
'type': 'string',
'description': 'The commands to run.',
'enum': [
'view',
'create',
'str_replace',
'insert',
'undo_edit',
],
},
'path': {
'type': 'string',
'description': 'Absolute path to file or directory.',
},
},
'required': ['command', 'path'],
},
},
},
]
example = get_example_for_tools(tools)
assert example.startswith(
"Here's a running example of how to perform a task with the provided tools."
)
assert (
'USER: Create a list of numbers from 1 to 10, and display them in a web page at port 5000.'
in example
)
assert TOOL_EXAMPLES['execute_bash']['check_dir'] in example
assert TOOL_EXAMPLES['execute_bash']['run_server'] in example
assert TOOL_EXAMPLES['execute_bash']['kill_server'] in example
assert TOOL_EXAMPLES['str_replace_editor']['create_file'] in example
assert TOOL_EXAMPLES['str_replace_editor']['edit_file'] in example
assert TOOL_EXAMPLES['browser']['view_page'] not in example
assert TOOL_EXAMPLES['finish']['example'] not in example
def test_get_example_for_tools_multiple_tools_with_finish():
"""Test get_example_for_tools with multiple tools including finish."""
# Uses execute_bash and finish tools
tools = [
{
'type': 'function',
'function': {
'name': 'execute_bash',
'description': 'Execute a bash command in the terminal.',
'parameters': { # Params added for completeness, not strictly needed by get_example_for_tools
'type': 'object',
'properties': {
'command': {
'type': 'string',
'description': 'The bash command to execute.',
}
},
'required': ['command'],
},
},
},
{
'type': 'function',
'function': {
'name': 'str_replace_editor',
'description': 'Custom editing tool for viewing, creating and editing files.',
'parameters': {
'type': 'object',
'properties': {
'command': {
'type': 'string',
'description': 'The commands to run.',
'enum': [
'view',
'create',
'str_replace',
'insert',
'undo_edit',
],
},
'path': {
'type': 'string',
'description': 'Absolute path to file or directory.',
},
},
'required': ['command', 'path'],
},
},
},
{
'type': 'function',
'function': {
'name': 'browser',
'description': 'Interact with the browser.',
'parameters': {
'type': 'object',
'properties': {
'code': {
'type': 'string',
'description': 'The Python code that interacts with the browser.',
}
},
'required': ['code'],
},
},
},
{
'type': 'function',
'function': {
'name': 'finish',
'description': 'Finish the interaction.',
},
},
]
example = get_example_for_tools(tools)
assert example.startswith(
"Here's a running example of how to perform a task with the provided tools."
)
assert (
'USER: Create a list of numbers from 1 to 10, and display them in a web page at port 5000.'
in example
)
# Check for execute_bash parts (order matters for get_example_for_tools)
assert TOOL_EXAMPLES['execute_bash']['check_dir'].strip() in example
assert TOOL_EXAMPLES['execute_bash']['run_server'].strip() in example
assert TOOL_EXAMPLES['execute_bash']['kill_server'].strip() in example
assert TOOL_EXAMPLES['execute_bash']['run_server_again'].strip() in example
# Check for str_replace_editor parts
assert TOOL_EXAMPLES['str_replace_editor']['create_file'] in example
assert TOOL_EXAMPLES['str_replace_editor']['edit_file'] in example
# Check for browser part
assert TOOL_EXAMPLES['browser']['view_page'] in example
# Check for finish part
assert TOOL_EXAMPLES['finish']['example'] in example
def test_get_example_for_tools_all_tools():
"""Test that get_example_for_tools generates correct example with all tools."""
tools = FNCALL_TOOLS # FNCALL_TOOLS already includes 'finish'
example = get_example_for_tools(tools)
assert example.startswith(
"Here's a running example of how to perform a task with the provided tools."
)
assert (
'USER: Create a list of numbers from 1 to 10, and display them in a web page at port 5000.'
in example
)
assert TOOL_EXAMPLES['execute_bash']['check_dir'] in example
assert TOOL_EXAMPLES['execute_bash']['run_server'] in example
assert TOOL_EXAMPLES['execute_bash']['kill_server'] in example
assert TOOL_EXAMPLES['str_replace_editor']['create_file'] in example
assert TOOL_EXAMPLES['str_replace_editor']['edit_file'] in example
assert TOOL_EXAMPLES['finish']['example'] in example
# These are not in global FNCALL_TOOLS
# assert TOOL_EXAMPLES['web_read']['read_docs'] not in example # web_read is removed
assert TOOL_EXAMPLES['browser']['view_page'] not in example
FNCALL_MESSAGES = [
{
'content': [
{
'type': 'text',
'text': "You are a helpful assistant that can interact with a computer to solve tasks.\n<IMPORTANT>\n* If user provides a path, you should NOT assume it's relative to the current working directory. Instead, you should explore the file system to find the file before working on it.\n</IMPORTANT>\n\n",
'cache_control': {'type': 'ephemeral'},
}
],
'role': 'system',
},
{
'content': [
{
'type': 'text',
'text': "<uploaded_files>\n/workspace/astropy__astropy__5.1\n</uploaded_files>\nI've uploaded a python code repository in the directory astropy__astropy__5.1. LONG DESCRIPTION:\n\n",
}
],
'role': 'user',
},
{
'content': [
{
'type': 'text',
'text': "I'll help you implement the necessary changes to meet the requirements. Let's follow the steps:\n\n1. First, let's explore the repository structure:",
}
],
'role': 'assistant',
'tool_calls': [
{
'index': 1,
'function': {
'arguments': '{"command": "ls -la /workspace/astropy__astropy__5.1"}',
'name': 'execute_bash',
},
'id': 'toolu_01',
'type': 'function',
}
],
},
{
'content': [
{
'type': 'text',
'text': 'ls -la /workspace/astropy__astropy__5.1\r\nls: /workspace/astropy__astropy__5.1: Bad file descriptor\r\nlrwxrwxrwx 1 root root 8 Oct 28 21:58 /workspace/astropy__astropy__5.1 -> /testbed[Python Interpreter: /opt/miniconda3/envs/testbed/bin/python]\nroot@openhands-workspace:/workspace/astropy__astropy__5.1 # \n[Command finished with exit code 0]',
}
],
'role': 'tool',
'tool_call_id': 'toolu_01',
'name': 'execute_bash',
},
{
'content': [
{
'type': 'text',
'text': "I see there's a symlink. Let's explore the actual directory:",
}
],
'role': 'assistant',
'tool_calls': [
{
'index': 1,
'function': {
'arguments': '{"command": "ls -la /testbed"}',
'name': 'execute_bash',
},
'id': 'toolu_02',
'type': 'function',
}
],
},
{
'content': [
{
'type': 'text',
'text': 'SOME OBSERVATION',
}
],
'role': 'tool',
'tool_call_id': 'toolu_02',
'name': 'execute_bash',
},
{
'content': [
{
'type': 'text',
'text': "Let's look at the source code file mentioned in the PR description:",
}
],
'role': 'assistant',
'tool_calls': [
{
'index': 1,
'function': {
'arguments': '{"command": "view", "path": "/testbed/astropy/io/fits/card.py"}',
'name': 'str_replace_editor',
},
'id': 'toolu_03',
'type': 'function',
}
],
},
{
'content': [
{
'type': 'text',
'text': "Here's the result of running `cat -n` on /testbed/astropy/io/fits/card.py:\n 1\t# Licensed under a 3-clause BSD style license - see PYFITS.rst...VERY LONG TEXT",
}
],
'role': 'tool',
'tool_call_id': 'toolu_03',
'name': 'str_replace_editor',
},
]
NON_FNCALL_MESSAGES = [
{
'role': 'system',
'content': [
{
'type': 'text',
'text': 'You are a helpful assistant that can interact with a computer to solve tasks.\n<IMPORTANT>\n* If user provides a path, you should NOT assume it\'s relative to the current working directory. Instead, you should explore the file system to find the file before working on it.\n</IMPORTANT>\n\n\nYou have access to the following functions:\n\n---- BEGIN FUNCTION #1: execute_bash ----\nDescription: Execute a bash command in the terminal.\n* Long running commands: For commands that may run indefinitely, it should be run in the background and the output should be redirected to a file, e.g. command = `python3 app.py > server.log 2>&1 &`.\n* Interactive: If a bash command returns exit code `-1`, this means the process is not yet finished. The assistant must then send a second call to terminal with an empty `command` (which will retrieve any additional logs), or it can send additional text (set `command` to the text) to STDIN of the running process, or it can send command=`ctrl+c` to interrupt the process.\n* Timeout: If a command execution result says "Command timed out. Sending SIGINT to the process", the assistant should retry running the command in the background.\n\nParameters:\n (1) command (string, required): The bash command to execute. Can be empty to view additional logs when previous exit code is `-1`. Can be `ctrl+c` to interrupt the currently running process.\n---- END FUNCTION #1 ----\n\n---- BEGIN FUNCTION #2: finish ----\nDescription: Finish the interaction when the task is complete OR if the assistant cannot proceed further with the task.\nNo parameters are required for this function.\n---- END FUNCTION #2 ----\n\n---- BEGIN FUNCTION #3: str_replace_editor ----\nDescription: Custom editing tool for viewing, creating and editing files\n* State is persistent across command calls and discussions with the user\n* If `path` is a file, `view` displays the result of applying `cat -n`. If `path` is a directory, `view` lists non-hidden files and directories up to 2 levels deep\n* The `create` command cannot be used if the specified `path` already exists as a file\n* If a `command` generates a long output, it will be truncated and marked with `<response clipped>`\n* The `undo_edit` command will revert the last edit made to the file at `path`\n\nNotes for using the `str_replace` command:\n* The `old_str` parameter should match EXACTLY one or more consecutive lines from the original file. Be mindful of whitespaces!\n* If the `old_str` parameter is not unique in the file, the replacement will not be performed. Make sure to include enough context in `old_str` to make it unique\n* The `new_str` parameter should contain the edited lines that should replace the `old_str`\n\nParameters:\n (1) command (string, required): The commands to run. Allowed options are: `view`, `create`, `str_replace`, `insert`, `undo_edit`.\nAllowed values: [`view`, `create`, `str_replace`, `insert`, `undo_edit`]\n (2) path (string, required): Absolute path to file or directory, e.g. `/repo/file.py` or `/repo`.\n (3) file_text (string, optional): Required parameter of `create` command, with the content of the file to be created.\n (4) old_str (string, optional): Required parameter of `str_replace` command containing the string in `path` to replace.\n (5) new_str (string, optional): Optional parameter of `str_replace` command containing the new string (if not given, no string will be added). Required parameter of `insert` command containing the string to insert.\n (6) insert_line (integer, optional): Required parameter of `insert` command. The `new_str` will be inserted AFTER the line `insert_line` of `path`.\n (7) view_range (array, optional): Optional parameter of `view` command when `path` points to a file. If none is given, the full file is shown. If provided, the file will be shown in the indicated line number range, e.g. [11, 12] will show lines 11 and 12. Indexing at 1 to start. Setting `[start_line, -1]` shows all lines from `start_line` to the end of the file.\n---- END FUNCTION #3 ----\n\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n<function=example_function_name>\n<parameter=example_parameter_1>value_1</parameter>\n<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n</parameter>\n</function>\n\n<IMPORTANT>\nReminder:\n- Function calls MUST follow the specified format, start with <function= and end with </function>\n- Required parameters MUST be specified\n- Only call one function at a time\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after.\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n</IMPORTANT>\n',
'cache_control': {'type': 'ephemeral'},
}
],
},
{
'content': [
{
'type': 'text',
'text': IN_CONTEXT_LEARNING_EXAMPLE_PREFIX(FNCALL_TOOLS)
+ "<uploaded_files>\n/workspace/astropy__astropy__5.1\n</uploaded_files>\nI've uploaded a python code repository in the directory astropy__astropy__5.1. LONG DESCRIPTION:\n\n"
+ IN_CONTEXT_LEARNING_EXAMPLE_SUFFIX,
}
],
'role': 'user',
},
{
'role': 'assistant',
'content': [
{
'type': 'text',
'text': "I'll help you implement the necessary changes to meet the requirements. Let's follow the steps:\n\n1. First, let's explore the repository structure:\n\n<function=execute_bash>\n<parameter=command>ls -la /workspace/astropy__astropy__5.1</parameter>\n</function>",
}
],
},
{
'role': 'user',
'content': [
{
'type': 'text',
'text': 'EXECUTION RESULT of [execute_bash]:\nls -la /workspace/astropy__astropy__5.1\r\nls: /workspace/astropy__astropy__5.1: Bad file descriptor\r\nlrwxrwxrwx 1 root root 8 Oct 28 21:58 /workspace/astropy__astropy__5.1 -> /testbed[Python Interpreter: /opt/miniconda3/envs/testbed/bin/python]\nroot@openhands-workspace:/workspace/astropy__astropy__5.1 # \n[Command finished with exit code 0]',
}
],
},
{
'role': 'assistant',
'content': [
{
'type': 'text',
'text': "I see there's a symlink. Let's explore the actual directory:\n\n<function=execute_bash>\n<parameter=command>ls -la /testbed</parameter>\n</function>",
}
],
},
{
'role': 'user',
'content': [
{
'type': 'text',
'text': 'EXECUTION RESULT of [execute_bash]:\nSOME OBSERVATION',
}
],
},
{
'role': 'assistant',
'content': [
{
'type': 'text',
'text': "Let's look at the source code file mentioned in the PR description:\n\n<function=str_replace_editor>\n<parameter=command>view</parameter>\n<parameter=path>/testbed/astropy/io/fits/card.py</parameter>\n</function>",
}
],
},
{
'role': 'user',
'content': [
{
'type': 'text',
'text': "EXECUTION RESULT of [str_replace_editor]:\nHere's the result of running `cat -n` on /testbed/astropy/io/fits/card.py:\n 1\t# Licensed under a 3-clause BSD style license - see PYFITS.rst...VERY LONG TEXT",
}
],
},
]
FNCALL_RESPONSE_MESSAGE = {
'content': [
{
'type': 'text',
'text': 'Let me search for the `_format_float` method mentioned in the PR description:',
}
],
'role': 'assistant',
'tool_calls': [
{
'index': 1,
'function': {
'arguments': '{"command": "grep -n \\"_format_float\\" /testbed/astropy/io/fits/card.py"}',
'name': 'execute_bash',
},
'id': 'toolu_04',
'type': 'function',
}
],
}
NON_FNCALL_RESPONSE_MESSAGE = {
'content': [
{
'type': 'text',
'text': 'Let me search for the `_format_float` method mentioned in the PR description:\n\n<function=execute_bash>\n<parameter=command>grep -n "_format_float" /testbed/astropy/io/fits/card.py</parameter>\n</function>',
}
],
'role': 'assistant',
}
@pytest.mark.parametrize(
'tool_calls, expected',
[
# Original test case
(
FNCALL_RESPONSE_MESSAGE['tool_calls'],
"""<function=execute_bash>
<parameter=command>grep -n "_format_float" /testbed/astropy/io/fits/card.py</parameter>
</function>""",
),
# Test case with multiple parameters
(
[
{
'index': 1,
'function': {
'arguments': '{"command": "view", "path": "/test/file.py", "view_range": [1, 10]}',
'name': 'str_replace_editor',
},
'id': 'test_id',
'type': 'function',
}
],
"""<function=str_replace_editor>
<parameter=command>view</parameter>
<parameter=path>/test/file.py</parameter>
<parameter=view_range>[1, 10]</parameter>
</function>""",
),
# Test case with indented code block to verify indentation is preserved
(
[
{
'index': 1,
'function': {
'arguments': '{"command": "str_replace", "path": "/test/file.py", "old_str": "def example():\\n pass", "new_str": "def example():\\n # This is indented\\n print(\\"hello\\")\\n return True"}',
'name': 'str_replace_editor',
},
'id': 'test_id',
'type': 'function',
}
],
"""<function=str_replace_editor>
<parameter=command>str_replace</parameter>
<parameter=path>/test/file.py</parameter>
<parameter=old_str>
def example():
pass
</parameter>
<parameter=new_str>
def example():
# This is indented
print("hello")
return True
</parameter>
</function>""",
),
# Test case with list parameter value
(
[
{
'index': 1,
'function': {
'arguments': '{"command": "test", "path": "/test/file.py", "tags": ["tag1", "tag2", "tag with spaces"]}',
'name': 'test_function',
},
'id': 'test_id',
'type': 'function',
}
],
"""<function=test_function>
<parameter=command>test</parameter>
<parameter=path>/test/file.py</parameter>
<parameter=tags>["tag1", "tag2", "tag with spaces"]</parameter>
</function>""",
),
# Test case with dict parameter value
(
[
{
'index': 1,
'function': {
'arguments': '{"command": "test", "path": "/test/file.py", "metadata": {"key1": "value1", "key2": 42, "nested": {"subkey": "subvalue"}}}',
'name': 'test_function',
},
'id': 'test_id',
'type': 'function',
}
],
"""<function=test_function>
<parameter=command>test</parameter>
<parameter=path>/test/file.py</parameter>
<parameter=metadata>{"key1": "value1", "key2": 42, "nested": {"subkey": "subvalue"}}</parameter>
</function>""",
),
],
)
def test_convert_tool_call_to_string(tool_calls, expected):
assert len(tool_calls) == 1
converted = convert_tool_call_to_string(tool_calls[0])
print(converted)
assert converted == expected
def test_convert_fncall_messages_to_non_fncall_messages():
converted_non_fncall = convert_fncall_messages_to_non_fncall_messages(
FNCALL_MESSAGES, FNCALL_TOOLS
)
assert converted_non_fncall == NON_FNCALL_MESSAGES
def test_convert_non_fncall_messages_to_fncall_messages():
converted = convert_non_fncall_messages_to_fncall_messages(
NON_FNCALL_MESSAGES, FNCALL_TOOLS
)
print(json.dumps(converted, indent=2))
assert converted == FNCALL_MESSAGES
def test_two_way_conversion_nonfn_to_fn_to_nonfn():
non_fncall_copy = copy.deepcopy(NON_FNCALL_MESSAGES)
converted_fncall = convert_non_fncall_messages_to_fncall_messages(
NON_FNCALL_MESSAGES, FNCALL_TOOLS
)
assert (
non_fncall_copy == NON_FNCALL_MESSAGES
) # make sure original messages are not modified
assert converted_fncall == FNCALL_MESSAGES
fncall_copy = copy.deepcopy(FNCALL_MESSAGES)
converted_non_fncall = convert_fncall_messages_to_non_fncall_messages(
FNCALL_MESSAGES, FNCALL_TOOLS
)
assert (
fncall_copy == FNCALL_MESSAGES
) # make sure original messages are not modified
assert converted_non_fncall == NON_FNCALL_MESSAGES
def test_two_way_conversion_fn_to_nonfn_to_fn():
fncall_copy = copy.deepcopy(FNCALL_MESSAGES)
converted_non_fncall = convert_fncall_messages_to_non_fncall_messages(
FNCALL_MESSAGES, FNCALL_TOOLS
)
assert (
fncall_copy == FNCALL_MESSAGES
) # make sure original messages are not modified
assert converted_non_fncall == NON_FNCALL_MESSAGES
non_fncall_copy = copy.deepcopy(NON_FNCALL_MESSAGES)
converted_fncall = convert_non_fncall_messages_to_fncall_messages(
NON_FNCALL_MESSAGES, FNCALL_TOOLS
)
assert (
non_fncall_copy == NON_FNCALL_MESSAGES
) # make sure original messages are not modified
assert converted_fncall == FNCALL_MESSAGES
def test_infer_fncall_on_noncall_model():
messages_for_llm_inference = convert_fncall_messages_to_non_fncall_messages(
FNCALL_MESSAGES, FNCALL_TOOLS
)
assert messages_for_llm_inference == NON_FNCALL_MESSAGES
# Mock LLM inference
response_message_from_llm_inference = NON_FNCALL_RESPONSE_MESSAGE
# Convert back to fncall messages to hand back to the agent
# so agent is model-agnostic
all_nonfncall_messages = NON_FNCALL_MESSAGES + [response_message_from_llm_inference]
converted_fncall_messages = convert_non_fncall_messages_to_fncall_messages(
all_nonfncall_messages, FNCALL_TOOLS
)
assert converted_fncall_messages == FNCALL_MESSAGES + [FNCALL_RESPONSE_MESSAGE]
assert converted_fncall_messages[-1] == FNCALL_RESPONSE_MESSAGE
def test_convert_from_multiple_tool_calls_to_single_tool_call_messages():
# Test case with multiple tool calls in one message
input_messages = [
{
'role': 'assistant',
'content': 'Let me help you with that.',
'tool_calls': [
{
'id': 'call1',
'type': 'function',
'function': {'name': 'func1', 'arguments': '{}'},
},
{
'id': 'call2',
'type': 'function',
'function': {'name': 'func2', 'arguments': '{}'},
},
],
},
{
'role': 'tool',
'tool_call_id': 'call1',
'content': 'Result 1',
'name': 'func1',
},
{
'role': 'tool',
'tool_call_id': 'call2',
'content': 'Result 2',
'name': 'func2',
},
{
'role': 'assistant',
'content': 'Test again',
'tool_calls': [
{
'id': 'call3',
'type': 'function',
'function': {'name': 'func3', 'arguments': '{}'},
},
{
'id': 'call4',
'type': 'function',
'function': {'name': 'func4', 'arguments': '{}'},
},
],
},
{
'role': 'tool',
'tool_call_id': 'call3',
'content': 'Result 3',
'name': 'func3',
},
{
'role': 'tool',
'tool_call_id': 'call4',
'content': 'Result 4',
'name': 'func4',
},
]
expected_output = [
{
'role': 'assistant',
'content': 'Let me help you with that.',
'tool_calls': [
{
'id': 'call1',
'type': 'function',
'function': {'name': 'func1', 'arguments': '{}'},
}
],
},
{
'role': 'tool',
'tool_call_id': 'call1',
'content': 'Result 1',
'name': 'func1',
},
{
'role': 'assistant',
'content': '',
'tool_calls': [
{
'id': 'call2',
'type': 'function',
'function': {'name': 'func2', 'arguments': '{}'},
}
],
},
{
'role': 'tool',
'tool_call_id': 'call2',
'content': 'Result 2',
'name': 'func2',
},
{
'role': 'assistant',
'content': 'Test again',
'tool_calls': [
{
'id': 'call3',
'type': 'function',
'function': {'name': 'func3', 'arguments': '{}'},
}
],
},
{
'role': 'tool',
'tool_call_id': 'call3',
'content': 'Result 3',
'name': 'func3',
},
{
'role': 'assistant',
'content': '',
'tool_calls': [
{
'id': 'call4',
'type': 'function',
'function': {'name': 'func4', 'arguments': '{}'},
}
],
},
{
'role': 'tool',
'tool_call_id': 'call4',
'content': 'Result 4',
'name': 'func4',
},
]
result = convert_from_multiple_tool_calls_to_single_tool_call_messages(
input_messages
)
assert result == expected_output
def test_convert_from_multiple_tool_calls_to_single_tool_call_messages_incomplete():
# Test case with multiple tool calls in one message
input_messages = [
{
'role': 'assistant',
'content': 'Let me help you with that.',
'tool_calls': [
{
'id': 'call1',
'type': 'function',
'function': {'name': 'func1', 'arguments': '{}'},
},
{
'id': 'call2',
'type': 'function',
'function': {'name': 'func2', 'arguments': '{}'},
},
],
},
{
'role': 'tool',
'tool_call_id': 'call1',
'content': 'Result 1',
'name': 'func1',
},
]
with pytest.raises(FunctionCallConversionError):
convert_from_multiple_tool_calls_to_single_tool_call_messages(input_messages)
def test_convert_from_multiple_tool_calls_no_changes_needed():
# Test case where no conversion is needed (single tool call)
input_messages = [
{
'role': 'assistant',
'content': 'Let me help you with that.',
'tool_calls': [
{
'id': 'call1',
'type': 'function',
'function': {'name': 'func1', 'arguments': '{}'},
}
],
},
{
'role': 'tool',
'tool_call_id': 'call1',
'content': 'Result 1',
'name': 'func1',
},
]
result = convert_from_multiple_tool_calls_to_single_tool_call_messages(
input_messages
)
assert result == input_messages