Skip to content

Commit 35c2d1b

Browse files
authored
Merge pull request #5405 from continuedev/nate/hotfix-free-trial
hotfix for free-trial reranker bug
2 parents d0cbb46 + c373383 commit 35c2d1b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/config/load.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ async function intermediateToFinalConfig({
486486
const cls = LLMClasses.find((c) => c.providerName === name);
487487
if (cls) {
488488
const llmOptions: LLMOptions = {
489-
model: params?.model,
489+
model: params?.model ?? "UNSPECIFIED",
490490
...params,
491491
};
492492
return new cls(llmOptions);

extensions/vscode/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "continue",
33
"icon": "media/icon.png",
44
"author": "Continue Dev, Inc",
5-
"version": "1.1.27",
5+
"version": "1.1.28",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/continuedev/continue"

0 commit comments

Comments
 (0)