chore: tidy changelog and format

This commit is contained in:
Peter Steinberger
2026-01-12 09:14:44 +00:00
parent ca8e2bccab
commit a4308a2428
2 changed files with 4 additions and 7 deletions

View File

@@ -1,11 +1,5 @@
# Changelog
## 2026.1.12
### Changes
- Deps: update pi-agent-core/pi-ai/pi-coding-agent/pi-tui and refresh the pi-ai patch.
- Dev: bump @types/node.
## 2026.1.11
### Highlights
@@ -15,6 +9,8 @@
- Agents: automatic pre-compaction memory flush turn to store durable memories before compaction.
### Changes
- Deps: update pi-agent-core/pi-ai/pi-coding-agent/pi-tui and refresh the pi-ai patch.
- Dev: bump @types/node.
- macOS: add wizard debug CLI and share wizard parsing helpers.
- CLI/Onboarding: simplify MiniMax auth choice to a single M2.1 option.
- CLI: configure section selection now loops until Continue.

View File

@@ -560,7 +560,8 @@ describe("google-shared convertMessages", () => {
const contents = convertMessages(model, context);
const parts = contents.flatMap((content) => content.parts ?? []);
const toolCallPart = parts.find(
(part) => typeof part === "object" && part !== null && "functionCall" in part,
(part) =>
typeof part === "object" && part !== null && "functionCall" in part,
);
const toolResponsePart = parts.find(
(part) =>