You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As your response will go to an automated parser, things to keep in mind all the time:
128
133
* follow the exact format provided above without fail
129
134
* only write the file content, no expiation, no pretext.
135
+
* code should be readable.
130
136
* if the language support, add comments at steps, which expains what you are about to do, dont add comment if comment is not supported by the file type example json file
131
137
* keep in mind there wont be any additional files other then the full files list given above, only use files that are mentioned in that list
* if the language support, add comments at steps, which expains what you are about to do, dont add comment if comment is not supported by the file type example json file
178
185
* keep in mind there wont be any additional files other then the full files list given above, only use files that are mentioned in that list
179
186
Begin!
180
-
"""
187
+
"""
188
+
189
+
defget_compressed_code(code: str):
190
+
returnf"""
191
+
compress the code below as best as you can, dont rename any data:
192
+
```
193
+
{code}
194
+
```
195
+
As your response will go to an automated parser, things to keep in mind all the time:
196
+
* only output code and nothing else
197
+
* do not rename and content of the code suck as variable names and public function names
198
+
Begin!
199
+
"""
200
+
201
+
defget_compressed_text(text: str):
202
+
returnf"""
203
+
compress the content of the text below as best as you can:
204
+
```
205
+
{text}
206
+
```
207
+
As your response will go to an automated parser, things to keep in mind all the time:
208
+
* only respond with the compressed text and nothing else
0 commit comments