From 799e5ca180ea808f7e4c55dd71a1af14b5d446f0 Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Wed, 9 Oct 2024 07:15:50 -0400 Subject: [PATCH] Fix custom instructions interfering with tool use guidelines --- src/core/prompts/system.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/prompts/system.ts b/src/core/prompts/system.ts index 1e75895..e14848e 100644 --- a/src/core/prompts/system.ts +++ b/src/core/prompts/system.ts @@ -252,7 +252,7 @@ export function addCustomInstructions(customInstructions: string): string { USER'S CUSTOM INSTRUCTIONS -The following additional instructions are provided by the user. They should be followed and given precedence in case of conflicts with previous instructions. +The following additional instructions are provided by the user, and should be followed to the best of your ability without interfering with the TOOL USE guidelines. ${customInstructions.trim()}` }