diff --git a/.changeset/agent-manager-multi-version-terminal.md b/.changeset/agent-manager-multi-version-terminal.md deleted file mode 100644 index ce3ee72b300..00000000000 --- a/.changeset/agent-manager-multi-version-terminal.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"kilo-code": patch ---- - -Fix Agent Manager multi-version sessions to wait for pending CLI processes so terminals are available per worktree. diff --git a/.changeset/agent-manager-telemetry-org-filter.md b/.changeset/agent-manager-telemetry-org-filter.md deleted file mode 100644 index 613fc4f5c8b..00000000000 --- a/.changeset/agent-manager-telemetry-org-filter.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"kilo-code": patch ---- - -Improve Agent Manager telemetry diff --git a/.changeset/agent-manager-virtualization.md b/.changeset/agent-manager-virtualization.md deleted file mode 100644 index 8a8af3366ea..00000000000 --- a/.changeset/agent-manager-virtualization.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"kilo-code": patch ---- - -fix: reduce GPU usage in Agent Manager with message virtualization diff --git a/.changeset/quick-otters-sleep.md b/.changeset/quick-otters-sleep.md deleted file mode 100644 index 8da64e427c9..00000000000 --- a/.changeset/quick-otters-sleep.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"kilo-code": patch ---- - -Fix Agent Manager CLI detection and Windows spawn by sanitizing shell output and running .cmd via cmd.exe. diff --git a/CHANGELOG.md b/CHANGELOG.md index fbd741efce6..d92e6ca68a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # kilo-code +## 4.140.3 + +### Patch Changes + +- [#4648](https://github.com/Kilo-Org/kilocode/pull/4648) [`4710d11`](https://github.com/Kilo-Org/kilocode/commit/4710d119ba6ead7f0198c22ae4e902478a63867e) Thanks [@marius-kilocode](https://github.com/marius-kilocode)! - Fix Agent Manager multi-version sessions to wait for pending CLI processes so terminals are available per worktree. + +- [#4658](https://github.com/Kilo-Org/kilocode/pull/4658) [`e189583`](https://github.com/Kilo-Org/kilocode/commit/e1895837b7dde1b8302f3d3eb49dad2b417fc1bb) Thanks [@marius-kilocode](https://github.com/marius-kilocode)! - Improve Agent Manager telemetry + +- [#4647](https://github.com/Kilo-Org/kilocode/pull/4647) [`c1a0692`](https://github.com/Kilo-Org/kilocode/commit/c1a06926e838af15e4be27a476ea3e35be430551) Thanks [@marius-kilocode](https://github.com/marius-kilocode)! - fix: reduce GPU usage in Agent Manager with message virtualization + +- [#4693](https://github.com/Kilo-Org/kilocode/pull/4693) [`eb5e835`](https://github.com/Kilo-Org/kilocode/commit/eb5e835be3f3c5a7cf5f7cc4baec87bfade6e2b2) Thanks [@keeganwitt](https://github.com/keeganwitt)! - Add Requesty Codestral to autocomplete provider models + +- [#4659](https://github.com/Kilo-Org/kilocode/pull/4659) [`fa42cfa`](https://github.com/Kilo-Org/kilocode/commit/fa42cfaa7b77a7f410c26eaf3810808cf3631ced) Thanks [@marius-kilocode](https://github.com/marius-kilocode)! - Fix Agent Manager CLI detection and Windows spawn by sanitizing shell output and running .cmd via cmd.exe. + +- [#4692](https://github.com/Kilo-Org/kilocode/pull/4692) [`1401220`](https://github.com/Kilo-Org/kilocode/commit/140122089a4de591c80573306ce81cd49091b510) Thanks [@mcowger](https://github.com/mcowger)! - Fix loss of Synthetic auto model refresh + ## 4.140.2 ### Patch Changes diff --git a/src/api/providers/fetchers/modelCache.ts b/src/api/providers/fetchers/modelCache.ts index 2d4abf95c81..f4c2ab1ae47 100644 --- a/src/api/providers/fetchers/modelCache.ts +++ b/src/api/providers/fetchers/modelCache.ts @@ -321,6 +321,7 @@ export async function initializeModelCacheRefresh(): Promise { { provider: "glama", options: { provider: "glama" } }, // kilocode_change { provider: "vercel-ai-gateway", options: { provider: "vercel-ai-gateway" } }, { provider: "chutes", options: { provider: "chutes" } }, + { provider: "synthetic", options: { provider: "synthetic" } }, // kilocode_change: Add synthetic to background refresh ] // Refresh each provider in background (fire and forget) diff --git a/src/core/prompts/tools/native-tools/read_file.ts b/src/core/prompts/tools/native-tools/read_file.ts index 6f8fa8ed396..bf43f26c8af 100644 --- a/src/core/prompts/tools/native-tools/read_file.ts +++ b/src/core/prompts/tools/native-tools/read_file.ts @@ -19,22 +19,6 @@ export function createReadFileTool(partialReadsEnabled: boolean = true): OpenAI. " }] }. " + "The 'path' is required and relative to workspace. " - // kilocode_change start - const example = { - files: [ - { - path: "relative/path.ts", - line_ranges: partialReadsEnabled - ? [ - [1, 50], - [100, 150], - ] - : undefined, - }, - ], - } - // kilocode_change end - const optionalRangesDescription = partialReadsEnabled ? "The 'line_ranges' is optional for reading specific sections. Each range is a [start, end] tuple (1-based inclusive). " : "" @@ -97,7 +81,6 @@ export function createReadFileTool(partialReadsEnabled: boolean = true): OpenAI. }, }, required: ["files"], - examples: [example], // kilocode_change additionalProperties: false, }, }, diff --git a/src/package.json b/src/package.json index f2a3ff339de..26a7bb26f93 100644 --- a/src/package.json +++ b/src/package.json @@ -3,7 +3,7 @@ "displayName": "%extension.displayName%", "description": "%extension.description%", "publisher": "kilocode", - "version": "4.140.2", + "version": "4.140.3", "icon": "assets/icons/logo-outline-black.png", "galleryBanner": { "color": "#FFFFFF", diff --git a/src/services/ghost/types.ts b/src/services/ghost/types.ts index 07a2408e986..55be9176784 100644 --- a/src/services/ghost/types.ts +++ b/src/services/ghost/types.ts @@ -15,6 +15,7 @@ export const AUTOCOMPLETE_PROVIDER_MODELS = new Map([ ["mistral", "codestral-latest"], ["kilocode", "mistralai/codestral-2508"], ["openrouter", "mistralai/codestral-2508"], + ["requesty", "mistral/codestral-latest"], ["bedrock", "mistral.codestral-2508-v1:0"], ] as const)