From 44e76cbf97d42f7ad44b8bca37f7a49d5c306ec5 Mon Sep 17 00:00:00 2001 From: Lasse Studion Date: Thu, 22 Feb 2024 09:51:09 +0300 Subject: [PATCH] Update bot system prompts and add first question prompt --- bot_strings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bot_strings.py b/bot_strings.py index 50db7ab..78a41a5 100644 --- a/bot_strings.py +++ b/bot_strings.py @@ -5,8 +5,8 @@ class BotStrings(): """.strip() self.chatbot_system_prompt = 'You are an assistant chatting with a user.' #TODO Add instructions for how to answer and what not to answer. - self.checker_bot_system_prompt='A user is chatting with an assistant. You are checking the messages.' - self.general_bot_system_prompt='You are a bot used for finding information.' - + self.checker_bot_system_prompt='A user is chatting with an assistant. You are checking the messages. Keep to the information provided and never make any assumptions.' + self.general_bot_system_prompt='You are a bot used for findin information about things a user have found. You are not to make any assumptions, only provide information based on the information given.' + self.first_question = 'So first, tell me what you found?' botstrings = BotStrings() \ No newline at end of file