summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-17 12:48:10 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-17 12:48:10 -0700
commit36a2b72db549e2dde5a28d06c87df036a4e3afa0 (patch)
tree26e9459f5add34d9c8b77eaae672bd30e52c42bd
parent436225436ef8379687a80e0b9595ddd4b488d946 (diff)
downloadsncontinue-36a2b72db549e2dde5a28d06c87df036a4e3afa0.tar.gz
sncontinue-36a2b72db549e2dde5a28d06c87df036a4e3afa0.tar.bz2
sncontinue-36a2b72db549e2dde5a28d06c87df036a4e3afa0.zip
float -> int hot fix
-rw-r--r--continuedev/src/continuedev/steps/core/core.py7
-rw-r--r--extension/package-lock.json4
-rw-r--r--extension/package.json2
3 files changed, 7 insertions, 6 deletions
diff --git a/continuedev/src/continuedev/steps/core/core.py b/continuedev/src/continuedev/steps/core/core.py
index ea09f475..2b049ecc 100644
--- a/continuedev/src/continuedev/steps/core/core.py
+++ b/continuedev/src/continuedev/steps/core/core.py
@@ -162,7 +162,8 @@ class DefaultModelEditCodeStep(Step):
if self._previous_contents.strip() == self._new_contents.strip():
description = "No edits were made"
else:
- changes = '\n'.join(difflib.ndiff(self._previous_contents.splitlines(), self._new_contents.splitlines()))
+ changes = '\n'.join(difflib.ndiff(
+ self._previous_contents.splitlines(), self._new_contents.splitlines()))
description = await models.gpt3516k.complete(dedent(f"""\
Diff summary: "{self.user_input}"
@@ -181,8 +182,8 @@ class DefaultModelEditCodeStep(Step):
# We care because if this prompt itself goes over the limit, then the entire message will have to be cut from the completion.
# Overflow won't happen, but prune_chat_messages in count_tokens.py will cut out this whole thing, instead of us cutting out only as many lines as we need.
model_to_use = sdk.models.default
- max_tokens = MAX_TOKENS_FOR_MODEL.get(
- model_to_use.name, DEFAULT_MAX_TOKENS) / 2
+ max_tokens = int(MAX_TOKENS_FOR_MODEL.get(
+ model_to_use.name, DEFAULT_MAX_TOKENS) / 2)
TOKENS_TO_BE_CONSIDERED_LARGE_RANGE = 1200
if model_to_use.count_tokens(rif.contents) > TOKENS_TO_BE_CONSIDERED_LARGE_RANGE:
diff --git a/extension/package-lock.json b/extension/package-lock.json
index 0e0125b0..e67fa950 100644
--- a/extension/package-lock.json
+++ b/extension/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "continue",
- "version": "0.0.177",
+ "version": "0.0.178",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "continue",
- "version": "0.0.177",
+ "version": "0.0.178",
"license": "Apache-2.0",
"dependencies": {
"@electron/rebuild": "^3.2.10",
diff --git a/extension/package.json b/extension/package.json
index 8462bf68..121423ed 100644
--- a/extension/package.json
+++ b/extension/package.json
@@ -14,7 +14,7 @@
"displayName": "Continue",
"pricing": "Free",
"description": "The open-source coding autopilot",
- "version": "0.0.177",
+ "version": "0.0.178",
"publisher": "Continue",
"engines": {
"vscode": "^1.67.0"