@polpo-ai/sdk 0.15.85 → 0.15.87
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/README.md +6 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -263,6 +263,12 @@ already-resolved call fails deterministically. The raw API requires
|
|
|
263
263
|
`x-session-id`, `Idempotency-Key`, `stream: true`, and
|
|
264
264
|
`polpo.delivery.onDisconnect: "continue"`.
|
|
265
265
|
|
|
266
|
+
Do not send a standalone `role: "tool"` message directly to a Project Loop.
|
|
267
|
+
Without `polpo.continuation`, Polpo rejects it with
|
|
268
|
+
`client_tool_continuation_required` before any deterministic Loop tool runs.
|
|
269
|
+
Use `continueWithToolResult()` so session versioning, idempotency, canonical
|
|
270
|
+
history reconstruction, and durable delivery are applied together.
|
|
271
|
+
|
|
266
272
|
## Chat interactions
|
|
267
273
|
|
|
268
274
|
Enable only interactions your client can render:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polpo-ai/sdk",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.87",
|
|
4
4
|
"description": "Polpo SDK — typed HTTP client, SSE streaming, and reactive store for AI agent orchestration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"url": "https://github.com/lumea-labs/polpo/issues"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@polpo-ai/
|
|
59
|
-
"@polpo-ai/
|
|
58
|
+
"@polpo-ai/core": "0.15.87",
|
|
59
|
+
"@polpo-ai/channels": "0.15.87"
|
|
60
60
|
},
|
|
61
61
|
"scripts": {
|
|
62
62
|
"build": "tsc",
|