diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-26 11:09:30 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-26 11:09:30 -0700 |
commit | 79f65715664b8b0300c35c14e058d318d7c79295 (patch) | |
tree | a2b5d409111d80a74f653ad0405420921661453b /continuedev | |
parent | e3b38da886adceb4dba120aeb4900659c09e3be6 (diff) | |
download | sncontinue-79f65715664b8b0300c35c14e058d318d7c79295.tar.gz sncontinue-79f65715664b8b0300c35c14e058d318d7c79295.tar.bz2 sncontinue-79f65715664b8b0300c35c14e058d318d7c79295.zip |
patch
Diffstat (limited to 'continuedev')
-rw-r--r-- | continuedev/src/continuedev/steps/chat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/continuedev/src/continuedev/steps/chat.py b/continuedev/src/continuedev/steps/chat.py index 2a8ae2da..54d9c657 100644 --- a/continuedev/src/continuedev/steps/chat.py +++ b/continuedev/src/continuedev/steps/chat.py @@ -136,7 +136,7 @@ class ChatWithFunctions(Step): self.chat_context.append(ChatMessage( role="user", - content=self.user_input + "\n**DO NOT EVER call the 'python' function.**", + content=self.user_input, summary=self.user_input )) |