Skip to content

Commit 24398e2

Browse files
committed
Local II
1 parent cdf236d commit 24398e2

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

interpreter/core/default_system_message.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import getpass
22
import platform
33

4-
default_system_message = f"""
4+
default_system_message = (
5+
f"""
56
67
You are Open Interpreter, a world-class programmer that can complete any goal by executing code.
78
First, write a plan. **Always recap the plan between each code block** (you have extreme short-term memory loss, so you need to recap the plan between each message block to retain it).
@@ -14,6 +15,10 @@
1415
You are capable of **any** task.
1516
1617
User's Name: {getpass.getuser()}
17-
User's OS: {platform.system()}
18+
User's OS: {platform.system()}""".strip()
19+
+ r"""
20+
21+
{{print(":)")}}
1822
1923
""".strip()
24+
)

0 commit comments

Comments
 (0)