Environment utils
InstanceBuilder
Source code in sweagent/environment/utils.py
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 |
|
__init__(token=None)
This helper class is used to build the data for an instance object, retrieving problem statements from github issues or local files and setting repo paths from github urls or local paths.
Source code in sweagent/environment/utils.py
713 714 715 716 717 718 719 720 721 |
|
set_problem_statement(data_path)
Get problem statement for a single instance from a github issue url or a path to a markdown or text file.
Source code in sweagent/environment/utils.py
782 783 784 785 786 787 788 789 790 791 792 793 |
|
set_problem_statement_from_challenge_json(file_path)
For CTF challenges
Source code in sweagent/environment/utils.py
748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 |
|
set_server_description(server_name, port)
For CTF challenges
Source code in sweagent/environment/utils.py
734 735 736 737 738 739 740 741 742 743 744 745 746 |
|
PatchFormatter
Source code in sweagent/environment/utils.py
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 |
|
__init__(patch, read_method)
Given the final patch and access to the container that contains the repository, extract relevant lines from the modified file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
patch
|
str
|
The patch as a string. |
required |
read_method
|
Callable[[str], str]
|
Callable with path to file (relative to repository root) as argument that returns the file content as a string. |
required |
Source code in sweagent/environment/utils.py
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 |
|
concat_files_strings(files)
staticmethod
Concatenate multiple read_files
outputs into a single string.
Source code in sweagent/environment/utils.py
1141 1142 1143 1144 1145 1146 1147 |
|
format_file(text, starts, stops, *, linenos=True)
Reads file and returns string representation of the relevant lines.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
The path to the file within the repo location |
required | |
starts
|
list[int]
|
The starting line numbers of the relevant lines. The first line is line 1. |
required |
stops
|
list[int]
|
The stopping line numbers of the relevant lines. The stop is not inclusive. The first line is line 1. |
required |
linenos
|
bool
|
Whether to include line numbers |
True
|
Source code in sweagent/environment/utils.py
1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 |
|
copy_anything_to_container(container, host_path, container_path)
Copy files or directories from host to container
Note: Will need to set ownership on the copied files in the container.
Source code in sweagent/environment/utils.py
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
|
copy_file_to_container(container, contents, container_path)
Copies a given string into a Docker container at a specified path.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
container
|
Container
|
Docker SDK container object. |
required |
contents
|
str
|
The string to copy into the container. |
required |
container_path
|
str
|
The path inside the container where the string should be copied to. |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in sweagent/environment/utils.py
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 |
|
format_trajectory_markdown(trajectory)
Format a trajectory as a markdown string for use in gh PR description.
Source code in sweagent/environment/utils.py
989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 |
|
get_associated_commit_urls(org, repo, issue_number, *, token='')
Return the URLs of commits that would close an issue.
Source code in sweagent/environment/utils.py
966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 |
|
get_commit(api, owner, repo, ref=None)
Get commit object from github api
Parameters:
Name | Type | Description | Default |
---|---|---|---|
api
|
GhApi
|
|
required |
owner
|
str
|
Repo owner, e.g., "princeton-nlp" |
required |
repo
|
str
|
Repo, e.g., "SWE-agent" |
required |
ref
|
str
|
Branch, tag or commit hash |
None
|
Returns:
Name | Type | Description |
---|---|---|
_type_ |
description |
Source code in sweagent/environment/utils.py
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 |
|
get_container(ctr_name, image_name, container_mounts, persistent=False)
Get a container object for a given container name and image name
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ctr_name
|
str
|
Name of container |
required |
image_name
|
str
|
Name of image |
required |
persistent
|
bool
|
Whether to use a persistent container or not |
False
|
Returns: Container object
Source code in sweagent/environment/utils.py
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 |
|
get_data_path_name(data_path)
if data_path is a file, return the file stem elif it's a github url, return the owner__repo_name
Source code in sweagent/environment/utils.py
51 52 53 54 55 56 57 58 59 60 61 |
|
get_gh_issue_data(issue_url, *, token='')
Returns github issue data in the form of a dictionary. See https://docs.github.com/en/rest/issues/issues?apiVersion=2022-11-28#get-an-issue for return format
Source code in sweagent/environment/utils.py
693 694 695 696 697 698 699 700 |
|
get_instances(file_path, base_commit=None, split=None, token=None, *, repo_path='')
Getter function for handling json, jsonl files
Parameters:
Name | Type | Description | Default |
---|---|---|---|
file_path
|
str
|
Path to file |
required |
Returns:
Type | Description |
---|---|
list[dict[str, Any]]
|
List of instances as dictionaries |
Source code in sweagent/environment/utils.py
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 |
|
get_problem_statement_from_github_issue(owner, repo, issue_number, *, token='')
Return problem statement from github issue
Source code in sweagent/environment/utils.py
703 704 705 706 707 708 709 |
|
image_exists(image_name)
Check that the image exists and give some better error messages.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image_name
|
str
|
Name of image |
required |
Returns: bool: True if image exists
Source code in sweagent/environment/utils.py
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 |
|
is_github_issue_url(data_path)
Check if data_path is an URL pointing to a github issue
Source code in sweagent/environment/utils.py
64 65 66 |
|
is_github_repo_url(data_path)
Check if data_path is an URL pointing to a github repository. Paths to issues or PRs will also match this pattern.
Source code in sweagent/environment/utils.py
69 70 71 72 73 |
|
parse_gh_issue_url(issue_url)
Returns:
Name | Type | Description |
---|---|---|
owner |
str
|
Repo owner |
repo |
str
|
Repo name |
str
|
issue number: Issue number as str |
Raises:
Type | Description |
---|---|
InvalidGithubURL
|
If the URL is not a valid github issue URL |
Source code in sweagent/environment/utils.py
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 |
|
parse_gh_repo_url(repo_url)
Returns:
Name | Type | Description |
---|---|---|
owner |
str
|
Repo owner/org |
repo |
str
|
Repo name |
Raises:
Type | Description |
---|---|
InvalidGithubURL
|
If the URL is not a valid github repo URL |
Source code in sweagent/environment/utils.py
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 |
|
read_session_with_timeout(session, terminal_pattern, timeout_duration, no_output_timeout_duration)
Read data from a subprocess with a timeout. This function uses a file descriptor to read data from the subprocess in a non-blocking way.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
session
|
Popen
|
The session subprocess. |
required |
terminal_pattern
|
str
|
the terminal pattern to indicate end of output. |
required |
timeout_duration
|
int | float
|
The timeout duration in seconds. |
required |
Returns:
Type | Description |
---|---|
str
|
Output |
Raises:
Type | Description |
---|---|
TimeoutError
|
If the timeout duration is reached while reading from the subprocess. |
Source code in sweagent/environment/utils.py
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 |
|
read_with_timeout(container, pid_func, timeout_duration)
Read data from a subprocess with a timeout. This function uses a file descriptor to read data from the subprocess in a non-blocking way.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
container
|
Popen
|
The subprocess container. |
required |
pid_func
|
Callable
|
A function that returns a list of process IDs (except the PID of the main process). |
required |
timeout_duration
|
int | float
|
The timeout duration in seconds. |
required |
Returns:
Name | Type | Description |
---|---|---|
output |
str
|
The data read from the subprocess, stripped of trailing newline characters. |
Raises:
Type | Description |
---|---|
TimeoutError
|
If the timeout duration is reached while reading from the subprocess. |
Source code in sweagent/environment/utils.py
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 |
|
read_with_timeout_experimental(container, timeout_duration, no_output_timeout_duration)
Read data from a subprocess with a timeout. This function uses a file descriptor to read data from the subprocess in a non-blocking way.
NOTE: This is an experimental implementation that is faster than read_with_timeout
, but
has not been thoroughly tested.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
container
|
Popen
|
The subprocess container. |
required |
timeout_duration
|
int | float
|
The timeout duration in seconds. |
required |
no_output_timeout_duration
|
int | float
|
The timeout duration to wait if no output is produced, in seconds. |
required |
Returns:
Type | Description |
---|---|
tuple[str, str]
|
Output and exit code, both as strings (!) |
Raises:
Type | Description |
---|---|
TimeoutError
|
If the timeout duration is reached while reading from the subprocess. |
Source code in sweagent/environment/utils.py
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 |
|