mini-swe-agent 1.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. mini_swe_agent-1.1.0.dist-info/METADATA +288 -0
  2. mini_swe_agent-1.1.0.dist-info/RECORD +47 -0
  3. mini_swe_agent-1.1.0.dist-info/WHEEL +5 -0
  4. mini_swe_agent-1.1.0.dist-info/entry_points.txt +5 -0
  5. mini_swe_agent-1.1.0.dist-info/licenses/LICENSE.md +21 -0
  6. mini_swe_agent-1.1.0.dist-info/top_level.txt +1 -0
  7. minisweagent/__init__.py +67 -0
  8. minisweagent/__main__.py +7 -0
  9. minisweagent/agents/__init__.py +1 -0
  10. minisweagent/agents/default.py +129 -0
  11. minisweagent/agents/interactive.py +148 -0
  12. minisweagent/agents/interactive_textual.py +324 -0
  13. minisweagent/config/README.md +9 -0
  14. minisweagent/config/__init__.py +24 -0
  15. minisweagent/config/__pycache__/__init__.cpython-313.pyc +0 -0
  16. minisweagent/config/default.yaml +143 -0
  17. minisweagent/config/extra/__init__.py +1 -0
  18. minisweagent/config/extra/swebench.yaml +229 -0
  19. minisweagent/config/github_issue.yaml +146 -0
  20. minisweagent/config/local.yaml +154 -0
  21. minisweagent/config/local2.tcss +128 -0
  22. minisweagent/environments/__init__.py +1 -0
  23. minisweagent/environments/docker.py +98 -0
  24. minisweagent/environments/extra/__init__.py +0 -0
  25. minisweagent/environments/extra/swerex_docker.py +39 -0
  26. minisweagent/environments/local.py +33 -0
  27. minisweagent/environments/singularity.py +52 -0
  28. minisweagent/models/__init__.py +81 -0
  29. minisweagent/models/anthropic.py +19 -0
  30. minisweagent/models/litellm_model.py +64 -0
  31. minisweagent/models/test_models.py +38 -0
  32. minisweagent/models/utils/cache_control.py +42 -0
  33. minisweagent/models/utils/key_per_thread.py +18 -0
  34. minisweagent/py.typed +0 -0
  35. minisweagent/run/__init__.py +1 -0
  36. minisweagent/run/extra/__init__.py +0 -0
  37. minisweagent/run/extra/config.py +100 -0
  38. minisweagent/run/extra/swebench.py +235 -0
  39. minisweagent/run/extra/swebench_single.py +53 -0
  40. minisweagent/run/extra/utils/batch_progress.py +164 -0
  41. minisweagent/run/github_issue.py +80 -0
  42. minisweagent/run/hello_world.py +36 -0
  43. minisweagent/run/inspector.py +212 -0
  44. minisweagent/run/mini.py +118 -0
  45. minisweagent/run/mini_extra.py +44 -0
  46. minisweagent/run/utils/__init__.py +0 -0
  47. minisweagent/run/utils/save.py +35 -0
@@ -0,0 +1,229 @@
1
+ agent:
2
+ system_template: |
3
+ You are a helpful assistant that can interact multiple times with a computer shell to solve programming tasks.
4
+ Your response must contain exactly ONE bash code block with ONE command (or commands connected with && or ||).
5
+
6
+ Include a THOUGHT section before your command where you explain your reasoning process.
7
+ Format your response as shown in <format_example>.
8
+
9
+ <format_example>
10
+ THOUGHT: Your reasoning and analysis here
11
+
12
+ ```bash
13
+ your_command_here
14
+ ```
15
+ </format_example>
16
+
17
+ Failure to follow these rules will cause your response to be rejected.
18
+ instance_template: |
19
+ <pr_description>
20
+ Consider the following PR description:
21
+ {{task}}
22
+ </pr_description>
23
+
24
+ <instructions>
25
+ # Task Instructions
26
+
27
+ ## Overview
28
+ You're a software engineer interacting continuously with a computer by submitting commands.
29
+ You'll be helping implement necessary changes to meet requirements in the PR description.
30
+ Your task is specifically to make changes to non-test files in the current directory in order to fix the issue described in the PR description in a way that is general and consistent with the codebase.
31
+
32
+ IMPORTANT: This is an interactive process where you will think and issue ONE command, see its result, then think and issue your next command.
33
+
34
+ For each response:
35
+ 1. Include a THOUGHT section explaining your reasoning and what you're trying to accomplish
36
+ 2. Provide exactly ONE bash command to execute
37
+
38
+ ## Important Boundaries
39
+ - MODIFY: Regular source code files in {{working_dir}}
40
+ - DO NOT MODIFY: Tests, configuration files (pyproject.toml, setup.cfg, etc.)
41
+
42
+ ## Recommended Workflow
43
+ 1. Analyze the codebase by finding and reading relevant files
44
+ 2. Create a script to reproduce the issue
45
+ 3. Edit the source code to resolve the issue
46
+ 4. Verify your fix works by running your script again
47
+ 5. Test edge cases to ensure your fix is robust
48
+
49
+ ## Command Execution Rules
50
+ You are operating in an environment where
51
+ 1. You write a single command
52
+ 2. The system executes that command in a subshell
53
+ 3. You see the result
54
+ 4. You write your next command
55
+
56
+ Each response should include:
57
+ 1. A **THOUGHT** section where you explain your reasoning and plan
58
+ 2. A single bash code block with your command
59
+
60
+ Format your responses like this:
61
+
62
+ <format_example>
63
+ THOUGHT: Here I explain my reasoning process, analysis of the current situation,
64
+ and what I'm trying to accomplish with the command below.
65
+
66
+ ```bash
67
+ your_command_here
68
+ ```
69
+ </format_example>
70
+
71
+ Commands must be specified in a single bash code block:
72
+
73
+ ```bash
74
+ your_command_here
75
+ ```
76
+
77
+ **CRITICAL REQUIREMENTS:**
78
+ - Your response SHOULD include a THOUGHT section explaining your reasoning
79
+ - Your response MUST include EXACTLY ONE bash code block
80
+ - This bash block MUST contain EXACTLY ONE command (or a set of commands connected with && or ||)
81
+ - If you include zero or multiple bash blocks, or no command at all, YOUR RESPONSE WILL FAIL
82
+ - Do NOT try to run multiple independent commands in separate blocks in one response
83
+ - Directory or environment variable changes are not persistent. Every action is executed in a new subshell.
84
+ - However, you can prefix any action with `MY_ENV_VAR=MY_VALUE cd /path/to/working/dir && ...` or write/load environment variables from files
85
+
86
+ Example of a CORRECT response:
87
+ <example_response>
88
+ THOUGHT: I need to understand the structure of the repository first. Let me check what files are in the current directory to get a better understanding of the codebase.
89
+
90
+ ```bash
91
+ ls -la
92
+ ```
93
+ </example_response>
94
+
95
+ Example of an INCORRECT response:
96
+ <example_response>
97
+ THOUGHT: I need to examine the codebase and then look at a specific file. I'll run multiple commands to do this.
98
+
99
+ ```bash
100
+ ls -la
101
+ ```
102
+
103
+ Now I'll read the file:
104
+
105
+ ```bash
106
+ cat file.txt
107
+ ```
108
+ </example_response>
109
+
110
+ If you need to run multiple commands, either:
111
+ 1. Combine them in one block using && or ||
112
+ ```bash
113
+ command1 && command2 || echo "Error occurred"
114
+ ```
115
+
116
+ 2. Wait for the first command to complete, see its output, then issue the next command in your following response.
117
+
118
+ ## Environment Details
119
+ - You have a full Linux shell environment
120
+ - Always use non-interactive flags (-y, -f) for commands
121
+ - Avoid interactive tools like vi, nano, or any that require user input
122
+ - If a command isn't available, you can install it
123
+
124
+ ## Useful Command Examples
125
+
126
+ ### Create a new file:
127
+ ```bash
128
+ cat <<'EOF' > newfile.py
129
+ import numpy as np
130
+ hello = "world"
131
+ print(hello)
132
+ EOF
133
+ ```
134
+
135
+ ### Edit files with sed:
136
+ ```bash
137
+ # Replace all occurrences
138
+ sed -i 's/old_string/new_string/g' filename.py
139
+
140
+ # Replace only first occurrence
141
+ sed -i 's/old_string/new_string/' filename.py
142
+
143
+ # Replace first occurrence on line 1
144
+ sed -i '1s/old_string/new_string/' filename.py
145
+
146
+ # Replace all occurrences in lines 1-10
147
+ sed -i '1,10s/old_string/new_string/g' filename.py
148
+ ```
149
+
150
+ ### View file content:
151
+ ```bash
152
+ # View specific lines with numbers
153
+ nl -ba filename.py | sed -n '10,20p'
154
+ ```
155
+
156
+ ### Any other command you want to run
157
+ ```bash
158
+ anything
159
+ ```
160
+
161
+ ## Submission
162
+ When you've completed your changes or can't make further progress
163
+ issue exactly the following command:
164
+
165
+ ```bash
166
+ echo MINI_SWE_AGENT_FINAL_OUTPUT && git add -A && git diff --cached
167
+ ```
168
+
169
+ This command will submit your changes.
170
+ You cannot continue working on this task after submitting.
171
+ </instructions>
172
+ action_observation_template: |
173
+ <returncode>{{output.returncode}}</returncode>
174
+ {% if output.output | length < 10000 -%}
175
+ <output>
176
+ {{ output.output -}}
177
+ </output>
178
+ {%- else -%}
179
+ <warning>
180
+ The output of your last command was too long.
181
+ Please try a different command that produces less output.
182
+ If you're looking at a file you can try use head, tail or sed to view a smaller number of lines selectively.
183
+ If you're using grep or find and it produced too much output, you can use a more selective search pattern.
184
+ If you really need to see something from the full command's output, you can redirect output to a file and then search in that file.
185
+ </warning>
186
+ {%- set elided_chars = output.output | length - 10000 -%}
187
+ <output_head>
188
+ {{ output.output[:5000] }}
189
+ </output_head>
190
+ <elided_chars>
191
+ {{ elided_chars }} characters elided
192
+ </elided_chars>
193
+ <output_tail>
194
+ {{ output.output[-5000:] }}
195
+ </output_tail>
196
+ {%- endif -%}
197
+ format_error_template: |
198
+ Please always provide EXACTLY ONE action in triple backticks, found {{actions|length}} actions.
199
+
200
+ Please format your action in triple backticks as shown in <response_example>.
201
+
202
+ <response_example>
203
+ Here are some thoughts about why you want to perform the action.
204
+
205
+ ```bash
206
+ <action>
207
+ ```
208
+ </response_example>
209
+
210
+ If you have completed your assignment, please consult the first message about how to
211
+ submit your solution (you will not be able to continue working on this task after that).
212
+ step_limit: 250
213
+ cost_limit: 3.
214
+
215
+ environment:
216
+ cwd: "/testbed"
217
+ timeout: 60
218
+ env:
219
+ PAGER: cat
220
+ MANPAGER: cat
221
+ LESS: -R
222
+ PIP_PROGRESS_BAR: 'off'
223
+ TQDM_DISABLE: '1'
224
+
225
+ model:
226
+ model_name: "claude-sonnet-4-20250514"
227
+ model_kwargs:
228
+ temperature: 0.0
229
+ drop_params: true
@@ -0,0 +1,146 @@
1
+ agent:
2
+ system_template: |
3
+ You are a helpful assistant that can interact with a computer.
4
+
5
+ Your response must contain exactly ONE bash code block with ONE command (or commands connected with && or ||).
6
+ Include a THOUGHT section before your command where you explain your reasoning process.
7
+ Format your response as shown in <format_example>.
8
+
9
+ <format_example>
10
+ Your reasoning and analysis here. Explain why you want to perform the action.
11
+
12
+ ```bash
13
+ your_command_here
14
+ ```
15
+ </format_example>
16
+
17
+ Failure to follow these rules will cause your response to be rejected.
18
+ To finish, issue the following command: `echo MINI_SWE_AGENT_FINAL_OUTPUT`
19
+ without any other command.
20
+ instance_template: |
21
+ Please solve this issue: {{task}}
22
+
23
+ You can execute bash commands and edit files to implement the necessary changes.
24
+
25
+ ## Recommended Workflow
26
+ 1. Analyze the codebase by finding and reading relevant files
27
+ 2. Create a script to reproduce the issue
28
+ 3. Edit the source code to resolve the issue
29
+ 4. Verify your fix works by running your script again
30
+ 5. Test edge cases to ensure your fix is robust
31
+
32
+ ## Important Rules
33
+
34
+ 1. Every response must contain exactly one action
35
+ 2. The action must be enclosed in triple backticks
36
+ 3. Directory or environment variable changes are not persistent. Every action is executed in a new subshell.
37
+ However, you can prefix any action with `MY_ENV_VAR=MY_VALUE cd /path/to/working/dir && ...` or write/load environment variables from files
38
+ 4. To finish, issue the following command: `echo MINI_SWE_AGENT_FINAL_OUTPUT`.
39
+ Do not combine it with any other command.
40
+
41
+ ## Formatting your response
42
+
43
+ Here is an example of a correct response:
44
+
45
+ <example_response>
46
+ THOUGHT: I need to understand the structure of the repository first. Let me check what files are in the current directory to get a better understanding of the codebase.
47
+
48
+ ```bash
49
+ ls -la
50
+ ```
51
+ </example_response>
52
+
53
+ ## Useful command examples
54
+
55
+ ### Create a new file:
56
+
57
+ ```bash
58
+ cat <<'EOF' > newfile.py
59
+ import numpy as np
60
+ hello = "world"
61
+ print(hello)
62
+ EOF
63
+ ```
64
+
65
+ ### Edit files with sed:
66
+
67
+ ```bash
68
+ # Replace all occurrences
69
+ sed -i 's/old_string/new_string/g' filename.py
70
+
71
+ # Replace only first occurrence
72
+ sed -i 's/old_string/new_string/' filename.py
73
+
74
+ # Replace first occurrence on line 1
75
+ sed -i '1s/old_string/new_string/' filename.py
76
+
77
+ # Replace all occurrences in lines 1-10
78
+ sed -i '1,10s/old_string/new_string/g' filename.py
79
+ ```
80
+
81
+ ### View file content:
82
+
83
+ ```bash
84
+ # View specific lines with numbers
85
+ nl -ba filename.py | sed -n '10,20p'
86
+ ```
87
+
88
+ ### Any other command you want to run
89
+
90
+ ```bash
91
+ anything
92
+ ```
93
+ action_observation_template: |
94
+ <returncode>{{output.returncode}}</returncode>
95
+ {% if output.output | length < 10000 -%}
96
+ <output>
97
+ {{ output.output -}}
98
+ </output>
99
+ {%- else -%}
100
+ <warning>
101
+ The output of your last command was too long.
102
+ Please try a different command that produces less output.
103
+ If you're looking at a file you can try use head, tail or sed to view a smaller number of lines selectively.
104
+ If you're using grep or find and it produced too much output, you can use a more selective search pattern.
105
+ If you really need to see something from the full command's output, you can redirect output to a file and then search in that file.
106
+ </warning>
107
+ {%- set elided_chars = output.output | length - 10000 -%}
108
+ <output_head>
109
+ {{ output.output[:5000] }}
110
+ </output_head>
111
+ <elided_chars>
112
+ {{ elided_chars }} characters elided
113
+ </elided_chars>
114
+ <output_tail>
115
+ {{ output.output[-5000:] }}
116
+ </output_tail>
117
+ {%- endif -%}
118
+ format_error_template: |
119
+ Please always provide EXACTLY ONE action in triple backticks, found {{actions|length}} actions.
120
+ If you want to end the task, please issue the following command: `echo MINI_SWE_AGENT_FINAL_OUTPUT`
121
+ without any other command.
122
+ Else, please format your response exactly as follows:
123
+
124
+ <response_example>
125
+ Here are some thoughts about why you want to perform the action.
126
+
127
+ ```bash
128
+ <action>
129
+ ```
130
+ </response_example>
131
+ step_limit: 0.
132
+ cost_limit: 0.
133
+
134
+ environment:
135
+ image: "python:3.11"
136
+ cwd: "/testbed"
137
+ env:
138
+ PAGER: cat
139
+ MANPAGER: cat
140
+ LESS: -R
141
+ PIP_PROGRESS_BAR: 'off'
142
+ TQDM_DISABLE: '1'
143
+ model:
144
+ model_kwargs:
145
+ temperature: 0.0
146
+ drop_params: true
@@ -0,0 +1,154 @@
1
+ agent:
2
+ system_template: |
3
+ You are a helpful assistant that can interact with a computer.
4
+
5
+ Your response must contain exactly ONE bash code block with ONE command (or commands connected with && or ||).
6
+ Include a THOUGHT section before your command where you explain your reasoning process.
7
+ Format your response as shown in <format_example>.
8
+
9
+ <format_example>
10
+ Your reasoning and analysis here. Explain why you want to perform the action.
11
+
12
+ ```bash
13
+ your_command_here
14
+ ```
15
+ </format_example>
16
+
17
+ Failure to follow these rules will cause your response to be rejected.
18
+ To finish, issue the following command: `echo MINI_SWE_AGENT_FINAL_OUTPUT`
19
+ without any other command.
20
+ instance_template: |
21
+ Please solve this issue: {{task}}
22
+
23
+ You can execute bash commands and edit files to implement the necessary changes.
24
+
25
+ ## Recommended Workflow
26
+ 1. Analyze the codebase by finding and reading relevant files
27
+ 2. Create a script to reproduce the issue
28
+ 3. Edit the source code to resolve the issue
29
+ 4. Verify your fix works by running your script again
30
+ 5. Test edge cases to ensure your fix is robust
31
+
32
+ ## Important Rules
33
+
34
+ 1. Every response must contain exactly one action
35
+ 2. The action must be enclosed in triple backticks
36
+ 3. Directory or environment variable changes are not persistent. Every action is executed in a new subshell.
37
+ However, you can prefix any action with `MY_ENV_VAR=MY_VALUE cd /path/to/working/dir && ...` or write/load environment variables from files
38
+ 4. To finish, issue the following command: `echo MINI_SWE_AGENT_FINAL_OUTPUT`.
39
+ Do not combine it with any other command.
40
+
41
+ <system_information>
42
+ {{system}} {{release}} {{version}} {{machine}} {{processor}}
43
+ </system_information>
44
+
45
+ ## Formatting your response
46
+
47
+ Here is an example of a correct response:
48
+
49
+ <example_response>
50
+ THOUGHT: I need to understand the structure of the repository first. Let me check what files are in the current directory to get a better understanding of the codebase.
51
+
52
+ ```bash
53
+ ls -la
54
+ ```
55
+ </example_response>
56
+
57
+ ## Useful command examples
58
+
59
+ ### Create a new file:
60
+
61
+ ```bash
62
+ cat <<'EOF' > newfile.py
63
+ import numpy as np
64
+ hello = "world"
65
+ print(hello)
66
+ EOF
67
+ ```
68
+
69
+ ### Edit files with sed:
70
+
71
+ {%- if system == "Darwin" -%}
72
+ <important>
73
+ You are on MacOS. For all the below examples, you need to use `sed -i ''` instead of `sed -i`.
74
+ </important>
75
+ {%- endif -%}
76
+
77
+ ```bash
78
+ # Replace all occurrences
79
+ sed -i 's/old_string/new_string/g' filename.py
80
+
81
+ # Replace only first occurrence
82
+ sed -i 's/old_string/new_string/' filename.py
83
+
84
+ # Replace first occurrence on line 1
85
+ sed -i '1s/old_string/new_string/' filename.py
86
+
87
+ # Replace all occurrences in lines 1-10
88
+ sed -i '1,10s/old_string/new_string/g' filename.py
89
+ ```
90
+
91
+ ### View file content:
92
+
93
+ ```bash
94
+ # View specific lines with numbers
95
+ nl -ba filename.py | sed -n '10,20p'
96
+ ```
97
+
98
+ ### Any other command you want to run
99
+
100
+ ```bash
101
+ anything
102
+ ```
103
+ action_observation_template: |
104
+ <returncode>{{output.returncode}}</returncode>
105
+ {% if output.output | length < 10000 -%}
106
+ <output>
107
+ {{ output.output -}}
108
+ </output>
109
+ {%- else -%}
110
+ <warning>
111
+ The output of your last command was too long.
112
+ Please try a different command that produces less output.
113
+ If you're looking at a file you can try use head, tail or sed to view a smaller number of lines selectively.
114
+ If you're using grep or find and it produced too much output, you can use a more selective search pattern.
115
+ If you really need to see something from the full command's output, you can redirect output to a file and then search in that file.
116
+ </warning>
117
+ {%- set elided_chars = output.output | length - 10000 -%}
118
+ <output_head>
119
+ {{ output.output[:5000] }}
120
+ </output_head>
121
+ <elided_chars>
122
+ {{ elided_chars }} characters elided
123
+ </elided_chars>
124
+ <output_tail>
125
+ {{ output.output[-5000:] }}
126
+ </output_tail>
127
+ {%- endif -%}
128
+ format_error_template: |
129
+ Please always provide EXACTLY ONE action in triple backticks, found {{actions|length}} actions.
130
+ If you want to end the task, please issue the following command: `echo MINI_SWE_AGENT_FINAL_OUTPUT`
131
+ without any other command.
132
+ Else, please format your response exactly as follows:
133
+
134
+ <response_example>
135
+ Here are some thoughts about why you want to perform the action.
136
+
137
+ ```bash
138
+ <action>
139
+ ```
140
+ </response_example>
141
+ step_limit: 0.
142
+ cost_limit: 3.
143
+ mode: confirm
144
+ environment:
145
+ env:
146
+ PAGER: cat
147
+ MANPAGER: cat
148
+ LESS: -R
149
+ PIP_PROGRESS_BAR: 'off'
150
+ TQDM_DISABLE: '1'
151
+ model:
152
+ model_kwargs:
153
+ temperature: 0.0
154
+ drop_params: true
@@ -0,0 +1,128 @@
1
+ Screen {
2
+ layout: grid;
3
+ grid-size: 1;
4
+ grid-rows: 1fr 8 1fr;
5
+ }
6
+
7
+ #main {
8
+ height: 100%;
9
+ padding: 1;
10
+ }
11
+
12
+ Footer {
13
+ dock: bottom;
14
+ content-align: center middle;
15
+ }
16
+
17
+ #content {
18
+ height: auto;
19
+ }
20
+
21
+ .message-container {
22
+ margin: 1;
23
+ padding: 1;
24
+ background: $surface;
25
+ height: auto;
26
+ width: 100%;
27
+ }
28
+
29
+ .message-header {
30
+ text-align: left;
31
+ color: $primary;
32
+ padding: 0 1;
33
+ text-style: bold;
34
+ }
35
+
36
+ .message-content {
37
+ margin-top: 1;
38
+ padding: 0 1;
39
+ }
40
+
41
+ Header.running {
42
+ background: $error;
43
+ }
44
+
45
+ .confirmation-modal {
46
+ layout: vertical;
47
+ background: $surface;
48
+ margin: 1 4;
49
+ min-width: 40;
50
+ padding: 1;
51
+ border: tall $primary;
52
+ height: auto;
53
+ }
54
+
55
+ .modal-title {
56
+ text-align: center;
57
+ text-style: bold;
58
+ margin-bottom: 1;
59
+ }
60
+
61
+ .modal-content {
62
+ margin: 1 2;
63
+ min-height: 1;
64
+ max-height: 10;
65
+ overflow-y: auto;
66
+ }
67
+
68
+ .button-container {
69
+ layout: horizontal;
70
+ align-horizontal: center;
71
+ margin-top: 1;
72
+ }
73
+
74
+ .button-container Button {
75
+ margin: 0 1;
76
+ min-width: 10;
77
+ }
78
+
79
+ .confirmation-container {
80
+ background: $boost;
81
+ border: heavy $primary;
82
+ padding: 1;
83
+ margin: 1;
84
+ }
85
+
86
+ .confirmation-header {
87
+ color: $warning;
88
+ text-style: bold;
89
+ }
90
+
91
+ .command-to-confirm {
92
+ background: $surface;
93
+ margin: 1 0;
94
+ padding: 1;
95
+ color: $text;
96
+ }
97
+
98
+ #confirmation-input {
99
+ margin-top: 1;
100
+ }
101
+
102
+ .confirmation-prompt {
103
+ background: $boost;
104
+ border: heavy $warning;
105
+ padding: 1;
106
+ margin: 1;
107
+ text-align: center;
108
+ color: $warning;
109
+ }
110
+
111
+ .confirmation-prompt:focus {
112
+ border: heavy $accent;
113
+ background: $panel;
114
+ }
115
+
116
+ #rejection-input {
117
+ display: none;
118
+ margin: 1;
119
+ }
120
+
121
+ .rejection-help {
122
+ background: $boost;
123
+ border: heavy $warning;
124
+ padding: 1;
125
+ margin: 1;
126
+ text-align: center;
127
+ color: $warning;
128
+ }
@@ -0,0 +1 @@
1
+ """Environment implementations for mini-SWE-agent."""