Skip to content

Commit a30c45f

Browse files
committed
Break up single line platform system message
1 parent f38dff6 commit a30c45f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

interpreter/interpreter.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,10 @@ def default_system_message(self):
185185
system_message = "<SYSTEM_CAPABILITY>\n"
186186

187187
try:
188-
system_message += f"* You are an AI assistant with access to a machine running on {'Mac OS' if platform.system() == 'Darwin' else platform.system()} with internet access.\n"
188+
system_message += (
189+
"* You are an AI assistant with access to a machine running on "
190+
f"{'Mac OS' if platform.system() == 'Darwin' else platform.system()} with internet access.\n"
191+
)
189192
except:
190193
print("Error adding system capability for platform")
191194

0 commit comments

Comments
 (0)