Skip to content

Commit 5ad9c65

Browse files
QVAC-19908 chore: release sdk + bare-sdk 0.13.4
Fix-only patch release: recover malformed Qwen hybrid tool-call frames (#2677). Bumps @qvac/sdk and @qvac/bare-sdk to 0.13.4 and adds the 0.13.4 changelog. (cherry picked from commit 8fbb222)
1 parent 62604e8 commit 5ad9c65

5 files changed

Lines changed: 45 additions & 2 deletions

File tree

packages/bare-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@qvac/bare-sdk",
3-
"version": "0.13.3",
3+
"version": "0.13.4",
44
"license": "Apache-2.0",
55
"description": "Bare-targeted slim assembly of the QVAC SDK. Consumers install only the addon packages they need and register plugins explicitly. No addon dependencies pulled in by default.",
66
"repository": {

packages/sdk/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## [0.13.4]
4+
5+
📦 **NPM:** https://www.npmjs.com/package/@qvac/sdk/v/0.13.4
6+
7+
A patch release that hardens tool-call parsing for Qwen models used in agentic
8+
workflows.
9+
10+
## Bug Fixes
11+
12+
### Recover malformed Qwen tool-call frames
13+
14+
Qwen3.5/3.6 can intermittently emit a malformed tool-call frame that fuses its
15+
XML and JSON tool templates, embedding the `function=<name>` token as a bare
16+
string key inside an otherwise JSON object. Previously the parser rejected that
17+
frame as invalid JSON, so no structured tool call was produced and callers saw
18+
the raw markup as assistant text. The parser now recognizes and repairs this
19+
specific shape, so the tool call is recovered and dispatched correctly.
20+
321
## [0.13.3]
422

523
📦 **NPM:** https://www.npmjs.com/package/@qvac/sdk/v/0.13.3
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog v0.13.4
2+
3+
Release Date: 2026-06-18
4+
5+
## 🐞 Fixes
6+
7+
- Recover Qwen hybrid tool-call frames. (see PR [#2677](https://github.com/tetherto/qvac/pull/2677))
8+
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# QVAC SDK v0.13.4 Release Notes
2+
3+
📦 **NPM:** https://www.npmjs.com/package/@qvac/sdk/v/0.13.4
4+
5+
A patch release that hardens tool-call parsing for Qwen models used in agentic
6+
workflows.
7+
8+
## Bug Fixes
9+
10+
### Recover malformed Qwen tool-call frames
11+
12+
Qwen3.5/3.6 can intermittently emit a malformed tool-call frame that fuses its
13+
XML and JSON tool templates, embedding the `function=<name>` token as a bare
14+
string key inside an otherwise JSON object. Previously the parser rejected that
15+
frame as invalid JSON, so no structured tool call was produced and callers saw
16+
the raw markup as assistant text. The parser now recognizes and repairs this
17+
specific shape, so the tool call is recovered and dispatched correctly.

packages/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@qvac/sdk",
3-
"version": "0.13.3",
3+
"version": "0.13.4",
44
"license": "Apache-2.0",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)