@polpo-ai/sdk 0.15.135 → 0.15.137
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 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -332,8 +332,12 @@ for await (const chunk of nextTurn) {
|
|
|
332
332
|
|
|
333
333
|
The continuation sends exactly one OpenAI-compatible `role: "tool"` message.
|
|
334
334
|
Polpo validates it against the latest pending call, rebuilds history from the
|
|
335
|
-
session store, and continues direct chat.
|
|
336
|
-
|
|
335
|
+
session store, and continues direct chat. Request-scoped client tools declared
|
|
336
|
+
on the original turn are retained by the server and remain available after an
|
|
337
|
+
`ask_user_question` or another delayed direct-chat continuation; do not
|
|
338
|
+
redeclare them in the continuation request. Add `loop: "build-site"` to the
|
|
339
|
+
same request to hand off into a durable Project Loop instead; the request tool
|
|
340
|
+
catalog is intentionally not propagated into Loop execution. Retry the same request
|
|
337
341
|
with the same idempotency key; a changed payload, stale version, wrong
|
|
338
342
|
user/scope, or an already-resolved call fails deterministically. The raw API requires
|
|
339
343
|
`x-session-id`, `Idempotency-Key`, `stream: true`, and
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polpo-ai/sdk",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.137",
|
|
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.137",
|
|
59
|
+
"@polpo-ai/channels": "0.15.137"
|
|
60
60
|
},
|
|
61
61
|
"scripts": {
|
|
62
62
|
"build": "tsc",
|