We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5be9234 commit 34dc44dCopy full SHA for 34dc44d
interpreter/interpreter.py
@@ -201,7 +201,10 @@ def default_system_message(self):
201
print("Error adding system capability for date")
202
203
try:
204
- system_message += f"* The user's cwd is {os.getcwd()}.\n"
+ # This is not updated as the chat progresses, and does not necessarily match CWD within tools.
205
+ system_message += (
206
+ f'* Launched from "{os.getcwd()}" (but tool environments may have their own cwd).\n'
207
+ )
208
except:
209
print("Error adding system capability for cwd")
210
0 commit comments