diff options
Diffstat (limited to 'continuedev')
-rw-r--r-- | continuedev/src/continuedev/plugins/steps/help.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/continuedev/src/continuedev/plugins/steps/help.py b/continuedev/src/continuedev/plugins/steps/help.py index d3807706..fef7f8e4 100644 --- a/continuedev/src/continuedev/plugins/steps/help.py +++ b/continuedev/src/continuedev/plugins/steps/help.py @@ -37,11 +37,16 @@ class HelpStep(Step): question = self.user_input - prompt = dedent(f"""Please us the information below to provide a succinct answer to the following quesiton: {question} - + prompt = dedent(f""" Information: + + {help} + + Instructions: + + Please us the information below to provide a succinct answer to the following question: {question} - {help}""") + Do not cite any slash commands other than those you've been told about, which are: /edit and /feedback.""") self.chat_context.append(ChatMessage( role="user", |