summaryrefslogtreecommitdiff
path: root/continuedev
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-08-10 10:47:09 -0700
committerNate Sesti <sestinj@gmail.com>2023-08-10 10:47:09 -0700
commit19acf3bb36c1e44274297c806b89b589ca02f5ba (patch)
treee04f9792f8adb17c219f6dd98bdcba54872ef41b /continuedev
parentee4701dc45cd540728302ca8a09e9b7ce842597f (diff)
downloadsncontinue-19acf3bb36c1e44274297c806b89b589ca02f5ba.tar.gz
sncontinue-19acf3bb36c1e44274297c806b89b589ca02f5ba.tar.bz2
sncontinue-19acf3bb36c1e44274297c806b89b589ca02f5ba.zip
fix: :green_heart: testing for failure to package dist in vsix
Diffstat (limited to 'continuedev')
-rw-r--r--continuedev/src/continuedev/plugins/steps/help.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/continuedev/src/continuedev/plugins/steps/help.py b/continuedev/src/continuedev/plugins/steps/help.py
index ec670999..82f885d6 100644
--- a/continuedev/src/continuedev/plugins/steps/help.py
+++ b/continuedev/src/continuedev/plugins/steps/help.py
@@ -39,6 +39,7 @@ class HelpStep(Step):
if question.strip() == "":
self.description = help
else:
+ self.description = "The following output is generated by a language model, which may hallucinate. Type just '/help'to see a fixed answer. You can also learn more by reading [the docs](https://continue.dev/docs).\n\n"
prompt = dedent(f"""
Information:
@@ -48,7 +49,7 @@ class HelpStep(Step):
Please us the information below to provide a succinct answer to the following question: {question}
- Do not cite any slash commands other than those you've been told about, which are: /edit and /feedback.""")
+ Do not cite any slash commands other than those you've been told about, which are: /edit and /feedback. Never refer or link to any URL.""")
self.chat_context.append(ChatMessage(
role="user",