Skip to content

Commit 714350d

Browse files
committed
Merge remote-tracking branch 'origin/main' into bmc/continue-start
2 parents b514b95 + 7059c8b commit 714350d

File tree

5 files changed

+20
-11
lines changed

5 files changed

+20
-11
lines changed

.changeset/loud-bears-hide.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/nervous-nails-type.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# kilo-code
22

3+
## [v4.111.1]
4+
5+
- [#3337](https://github.com/Kilo-Org/kilocode/pull/3337) [`85a4447`](https://github.com/Kilo-Org/kilocode/commit/85a4447da76fc51697fb098a9cdda1d2064f7d1b) Thanks [@mcowger](https://github.com/mcowger)! - Added MiniMax M2 to Synthetic Provider
6+
7+
- [#3282](https://github.com/Kilo-Org/kilocode/pull/3282) [`ed4399b`](https://github.com/Kilo-Org/kilocode/commit/ed4399b7d82d735895fbf4d85cfaefff5002571a) Thanks [@chrarnoldus](https://github.com/chrarnoldus)! - Improved handling of tool calls in the API conversation history
8+
9+
- [#3270](https://github.com/Kilo-Org/kilocode/pull/3270) [`2b35053`](https://github.com/Kilo-Org/kilocode/commit/2b350530367bb0a14a0fdc7c11a030c2943c6cf6) Thanks [@chrarnoldus](https://github.com/chrarnoldus)! - Claude Haiku 4.5 now uses a simplified read file tool for reduced error rate
10+
311
## [v4.111.0]
412

513
- [#3256](https://github.com/Kilo-Org/kilocode/pull/3256) [`f81b48b`](https://github.com/Kilo-Org/kilocode/commit/f81b48b8dec9cd276c3c7ba994d0512036abfa96) Thanks [@markijbema](https://github.com/markijbema)! - Switched autocomplete to showing completions inline

packages/types/src/providers/synthetic.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import type { ModelInfo } from "../model.js"
44

55
export type SyntheticModelId =
6+
| "hf:MiniMaxAI/MiniMax-M2"
67
| "hf:zai-org/GLM-4.6"
78
| "hf:zai-org/GLM-4.5"
89
| "hf:openai/gpt-oss-120b"
@@ -26,6 +27,16 @@ export type SyntheticModelId =
2627
export const syntheticDefaultModelId: SyntheticModelId = "hf:zai-org/GLM-4.6"
2728

2829
export const syntheticModels = {
30+
"hf:MiniMaxAI/MiniMax-M2": {
31+
maxTokens: 192608,
32+
contextWindow: 192608,
33+
supportsImages: false,
34+
supportsPromptCache: false,
35+
inputPrice: 0.55,
36+
outputPrice: 2.19,
37+
description:
38+
"MiniMax's latest hybrid reasoning model: it's fast, it thinks before it responds, it's great at using tools via the API, and it's a strong coding model. 192k-token context.",
39+
},
2940
"hf:moonshotai/Kimi-K2-Instruct-0905": {
3041
maxTokens: 262144,
3142
contextWindow: 262144,

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "%extension.displayName%",
44
"description": "%extension.description%",
55
"publisher": "kilocode",
6-
"version": "4.111.0",
6+
"version": "4.111.1",
77
"icon": "assets/icons/logo-outline-black.png",
88
"galleryBanner": {
99
"color": "#FFFFFF",

0 commit comments

Comments
 (0)