@crossworks/voice-client 0.232.133 → 0.232.142
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/package.json +1 -1
- package/src/adapters/types.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crossworks/voice-client",
|
|
3
|
-
"version": "0.232.
|
|
3
|
+
"version": "0.232.142",
|
|
4
4
|
"description": "Browser-safe surface of the voice/model layer — provider catalogue, model catalogs, audio tags, and the adapter type/metadata contract. Zero deps by design: nothing here may reach the network adapters or node builtins (the jackdaw-repo-split P0 boundary).",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./src/index.ts",
|
package/src/adapters/types.ts
CHANGED
|
@@ -267,7 +267,7 @@ export interface ChatToolCall {
|
|
|
267
267
|
name: string;
|
|
268
268
|
/** Stringified JSON args. Anthropic returns a parsed object as
|
|
269
269
|
* `input`; the adapter stringifies it here so the loop sees a
|
|
270
|
-
* single shape. Callers parse via @mantle/
|
|
270
|
+
* single shape. Callers parse via @mantle/runtime/agent/tool-args
|
|
271
271
|
* defensively because not every model emits valid JSON. */
|
|
272
272
|
arguments: string;
|
|
273
273
|
};
|
|
@@ -390,7 +390,7 @@ export interface ChatCacheControl {
|
|
|
390
390
|
* Restated here rather than imported from `@mantle/content` on purpose —
|
|
391
391
|
* `@mantle/voice` is the low-level adapter layer and must not pull in content's
|
|
392
392
|
* db/files/search dependency tree for five string literals. The two lists are
|
|
393
|
-
* pinned together by a compile-time assertion in `@mantle/assistant
|
|
393
|
+
* pinned together by a compile-time assertion in `@mantle/runtime/assistant`,
|
|
394
394
|
* which already depends on both, so they cannot drift silently.
|
|
395
395
|
*
|
|
396
396
|
* No `none`: "off" is expressed by omitting the field, because models flagged
|