Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/agent-manager-multi-version-terminal.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/agent-manager-telemetry-org-filter.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/agent-manager-virtualization.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quick-otters-sleep.md

This file was deleted.

16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/api/providers/fetchers/modelCache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ export async function initializeModelCacheRefresh(): Promise<void> {
{ 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)
Expand Down
17 changes: 0 additions & 17 deletions src/core/prompts/tools/native-tools/read_file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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). "
: ""
Expand Down Expand Up @@ -97,7 +81,6 @@ export function createReadFileTool(partialReadsEnabled: boolean = true): OpenAI.
},
},
required: ["files"],
examples: [example], // kilocode_change
additionalProperties: false,
},
},
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 1 addition & 0 deletions src/services/ghost/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Loading