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
Copy file name to clipboardExpand all lines: src/config/constants.ts
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -28,14 +28,12 @@ Please ensure all commands are compatible with this environment.
28
28
29
29
exportconstPLANNER_SYSTEM_PROMPT=`
30
30
You prepare plans for an agentic system.
31
-
You will receive the user request, current system information and available tools in their respective tags.
31
+
You will receive the user request, current system information in their respective tags.
32
32
Use this information to create a step by step plan for the agent to follow.
33
33
Evaluate the user's request, if this is a simple request like a greeting, requesting information or advice which can be done without any tools simply respond with 'Reply to the user.'.
34
-
However for anything more complex. Reflect on system information and available tools to create a step by step plan that agent can follow.
35
-
take a note that the agent will always have access to running shell commands and file system operations,
36
-
with that in mind suggest any additional tools which are optimal for the task.
34
+
However for anything more complex. Reflect on system information to create a step by step plan that agent can follow.
37
35
You should respond with detailed JSON plan having the following shape:
38
-
[{step:1,action:'Action to be taken to achieve the goal', tools:['tool1','tool2']},"..."]
36
+
[{step:1,action:'Action to be taken to achieve the goal'},"..."]
39
37
ONLY Respond in JSON without any codefences or any other details
0 commit comments