synartesis 0.6.10 → 0.6.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
What changed, and why it mattered. Dates are release dates.
|
|
4
4
|
|
|
5
|
+
## 0.6.11 — 2026-09-13
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **A conversation with Gemini died on the round after its first tool call.**
|
|
10
|
+
Gemini 3 signs the reasoning behind every function call it makes, and
|
|
11
|
+
refuses the next request outright if that signature does not come back on
|
|
12
|
+
the part it arrived on: `Function call is missing a thought_signature in
|
|
13
|
+
functionCall parts`. Nothing here was keeping it. The signature is now
|
|
14
|
+
carried through the loop and handed back untouched -- opaque, unread, and
|
|
15
|
+
never shown to anybody.
|
|
16
|
+
- **The same failure was waiting in the Claude adapter.** Passing thinking
|
|
17
|
+
blocks back is required when tools are in play, and the adapter was
|
|
18
|
+
rebuilding each assistant turn out of its text and its tool calls alone --
|
|
19
|
+
so the first tool call would have worked and the round after it would have
|
|
20
|
+
been a 400. The thinking blocks are kept in the order they were produced,
|
|
21
|
+
signature intact, and go back at the front of the turn they belong to.
|
|
22
|
+
- The loop between the two is what actually lost them, and now has a test of
|
|
23
|
+
its own: the adapters were each correct in isolation.
|
|
24
|
+
|
|
25
|
+
Nothing changes for OpenAI-compatible endpoints -- Mistral, Ollama, LM Studio,
|
|
26
|
+
vLLM, OpenAI itself. That protocol asks for nothing back, and inventing
|
|
27
|
+
something to send would be worse than sending nothing.
|
|
28
|
+
|
|
5
29
|
## 0.6.10 — 2026-09-13
|
|
6
30
|
|
|
7
31
|
### Added
|