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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Only write entries that are worth mentioning to users.

## Unreleased

## 0.82 (2026-01-21)

- Tool: Allow `WriteFile` and `StrReplaceFile` tools to edit/write files outside the working directory when using absolute paths
- Tool: Upload videos to Kimi files API when using Kimi provider, replacing inline data URLs with `ms://` references
- Config: Add `reserved_context_size` setting to customize auto-compaction trigger threshold (default: 50000 tokens)
Expand Down
2 changes: 2 additions & 0 deletions docs/en/release-notes/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ This page documents the changes in each Kimi CLI release.

## Unreleased

## 0.82 (2026-01-21)

- Tool: Allow `WriteFile` and `StrReplaceFile` tools to edit/write files outside the working directory when using absolute paths
- Tool: Upload videos to Kimi files API when using Kimi provider, replacing inline data URLs with `ms://` references
- Config: Add `reserved_context_size` setting to customize auto-compaction trigger threshold (default: 50000 tokens)
Expand Down
2 changes: 2 additions & 0 deletions docs/zh/release-notes/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

## 未发布

## 0.82 (2026-01-21)

- Tool:`WriteFile` 和 `StrReplaceFile` 工具支持使用绝对路径编辑/写入工作目录外的文件
- Tool:使用 Kimi 供应商时,视频文件上传到 Kimi Files API,使用 `ms://` 引用替代 inline data URL
- Config:添加 `reserved_context_size` 配置项,自定义自动压缩触发阈值(默认 50000 tokens)
Expand Down
4 changes: 2 additions & 2 deletions packages/kimi-code/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[project]
name = "kimi-code"
version = "0.81"
version = "0.82"
description = "Kimi Code is a CLI agent that lives in your terminal."
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["kimi-cli==0.81"]
dependencies = ["kimi-cli==0.82"]

[project.scripts]
kimi = "kimi_cli.cli:cli"
Expand Down
2 changes: 2 additions & 0 deletions packages/kosong/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 0.39.0 (2026-01-21)

- Control thinking mode via `extra_body` parameter instead of legacy `reasoning_effort`
- Add `files` property to `Kimi` provider that returns a `KimiFiles` object
- Add `KimiFiles.upload_video()` method for uploading videos to Kimi files API, returning `VideoURLPart`
Expand Down
2 changes: 1 addition & 1 deletion packages/kosong/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "kosong"
version = "0.38.0"
version = "0.39.0"
description = "The LLM abstraction layer for modern AI agent applications."
readme = "README.md"
requires-python = ">=3.12"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "kimi-cli"
version = "0.81"
version = "0.82"
description = "Kimi CLI is your next CLI agent."
readme = "README.md"
requires-python = ">=3.12"
Expand All @@ -9,7 +9,7 @@ dependencies = [
"aiofiles>=24.0,<26.0",
"aiohttp==3.13.3",
"typer==0.21.1",
"kosong[contrib]==0.38.0",
"kosong[contrib]==0.39.0",
# loguru stays >=0.6.0 because notify-py (via batrachian-toad) caps it at <=0.6.0 on 3.14+.
"loguru>=0.6.0,<0.8",
"prompt-toolkit==3.0.52",
Expand Down
4 changes: 4 additions & 0 deletions sdks/kimi-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.1.2 (2026-01-21)

- Update kosong dependency upper bound to support kosong 0.39.x

## 0.1.1 (2026-01-16)

- Fix kosong dependency version constraint to support kosong 0.38.x
Expand Down
4 changes: 2 additions & 2 deletions sdks/kimi-sdk/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[project]
name = "kimi-sdk"
version = "0.1.1"
version = "0.1.2"
description = "A lightweight Python SDK for the Kimi API."
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["kosong>=0.37.0,<0.39.0"]
dependencies = ["kosong>=0.37.0,<0.40.0"]

[dependency-groups]
dev = [
Expand Down
8 changes: 4 additions & 4 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading