Minor Changes
- #2558
75395f6Thanks @sailist! - Add the TurnStarted, UserPromptQueued, TaskStarted, and SessionHeartbeat hook events, enrich hook payloads with the session title and client type, include the model and profile in SessionStart, and report SessionEnd as archive when a session is archived instead of exited. Configure the new events under [[hooks]] in config.toml.
Patch Changes
-
#2416
eaab2b6Thanks @mangeshraut712! - Fall back to the built-in models.dev catalog snapshot when the public catalog is unreachable, so Known third-party provider import still works offline or in blocked networks. -
#2083
bfa0080Thanks @StaR4y! - web: Fix dark-mode monochrome controls and align the chat composer corner radius with the design system. -
#2559
dfc55a5Thanks @wbxl2000! - Render the "/login" already-logged-in confirmation in the success color instead of dim text, so the "Already logged in. Model configuration refreshed." message is clearly visible. -
#2572
6ba75a1Thanks @sailist! - Rename the[loop_control] max_retries_per_stepconfig key tomax_attempts_per_stepandmax_steps_per_runtomax_steps_per_turn: on the v2 engine the old keys no longer take effect and a startup warning prompts the rename inconfig.toml. TheKIMI_LOOP_MAX_RETRIES_PER_STEPenv var is likewise deprecated in favor ofKIMI_LOOP_MAX_ATTEMPTS_PER_STEPbut keeps working with a warning. -
#2585
c396873Thanks @sailist! - Fix submitting answers to interactive question prompts being rejected when the model provider returns tool call IDs containing colons (some OpenAI-compatible gateways). -
#2562
071b6a5Thanks @sailist! - Serve v1 message history from the server layer and drop the engine-side legacy message adapter; the /api/v1 message contract is unchanged. -
#2562
071b6a5Thanks @sailist! - Assemble the session snapshot endpoint from the engine's services for both cold and live sessions, and remove the KIMI_SNAPSHOT_READER, KIMI_SNAPSHOT_TIMEOUT_MS, and KIMI_SNAPSHOT_CACHE_LIMIT environment knobs. -
#2563
2118544Thanks @sailist! - Fix the context window limit showing as 0 in session status updates when no model is bound yet or the configured model no longer resolves; the limit now falls back to the default model or is omitted when unknown. -
#2563
2118544Thanks @sailist! - The[token_counting]strategy now only selects the reported context size:estimatedkeeps provider-reported usage out of the context-size display, andmeasuredno longer gets stuck retrying an oversized compaction request until it fails. -
#2563
2118544Thanks @sailist! - Add a[token_counting]config section to choose how context token counts are derived:measured+estimated(default),measured(provider usage only), orestimated(heuristic only, for providers without usage reporting). Setstrategyunder[token_counting]in config.toml (orKIMI_TOKEN_COUNTING_STRATEGY) to switch.