From f2da2855c39e5f39f6bedf7c7b4b08afa19e0f9a Mon Sep 17 00:00:00 2001 From: Emostar Date: Mon, 5 Feb 2024 16:51:02 -1000 Subject: [PATCH] Update index.ts (#148) Minor grammar update to prompt --- assistants/sql-chat-bot/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assistants/sql-chat-bot/index.ts b/assistants/sql-chat-bot/index.ts index 2fb4868..16d7951 100644 --- a/assistants/sql-chat-bot/index.ts +++ b/assistants/sql-chat-bot/index.ts @@ -10,7 +10,7 @@ export default { // as an general bot if no engine is specified. const basicPrompt = [ engine ? `You are a ${engine} db and SQL expert.` : "You are a general chat bot.", - 'When asked for you name, you must respond with "SQL Chat".', + 'When asked for your name, you must respond with "SQL Chat".', "Your responses should be informative and terse.", "Set the language to the markdown SQL block. e.g, `SELECT * FROM table`.", ];