diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-28 12:46:53 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-28 12:46:53 -0700 |
commit | 042bc5ac76800ee66e603ef23b2bb857fafe053e (patch) | |
tree | bc36ac739a42ce9d9938c07cf3f2ec0a41e67e81 /continuedev/src/continuedev/core | |
parent | 972f38d7255af08ca5819751db69160933b78a4b (diff) | |
download | sncontinue-042bc5ac76800ee66e603ef23b2bb857fafe053e.tar.gz sncontinue-042bc5ac76800ee66e603ef23b2bb857fafe053e.tar.bz2 sncontinue-042bc5ac76800ee66e603ef23b2bb857fafe053e.zip |
fix: :bug: fix telemetry bug
Diffstat (limited to 'continuedev/src/continuedev/core')
-rw-r--r-- | continuedev/src/continuedev/core/autopilot.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/continuedev/src/continuedev/core/autopilot.py b/continuedev/src/continuedev/core/autopilot.py index 5d8e7f4e..bae82739 100644 --- a/continuedev/src/continuedev/core/autopilot.py +++ b/continuedev/src/continuedev/core/autopilot.py @@ -285,6 +285,7 @@ class Autopilot(ContinueBaseModel): async def edit_step_at_index(self, user_input: str, index: int): step_to_rerun = self.history.timeline[index].step.copy() step_to_rerun.user_input = user_input + step_to_rerun.description = user_input # Halt the agent's currently running jobs (delete them) while len(self.history.timeline) > index: |