@polpo-ai/sdk 0.15.67 → 0.15.68

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.
Files changed (2) hide show
  1. package/README.md +4 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -117,7 +117,10 @@ For streaming requests, `ChatCompletionStream.suggestions` contains the latest
117
117
  validated suggestions after the stream completes. Each item has only `id`,
118
118
  `label`, and the exact `prompt` to send as the next user message. The React
119
119
  `useChat` hook requests both supported interactions, exposes `suggestions`, and
120
- stores them on the assistant message that produced them.
120
+ stores them on the assistant message that produced them. When resuming a
121
+ session, `useChat` restores active suggestions only when that assistant message
122
+ is still the latest message; historical suggestions remain attached to their
123
+ original messages without being offered again after a newer user turn.
121
124
 
122
125
  ## Steer an active run
123
126
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polpo-ai/sdk",
3
- "version": "0.15.67",
3
+ "version": "0.15.68",
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,7 +55,7 @@
55
55
  "url": "https://github.com/lumea-labs/polpo/issues"
56
56
  },
57
57
  "dependencies": {
58
- "@polpo-ai/core": "0.15.67"
58
+ "@polpo-ai/core": "0.15.68"
59
59
  },
60
60
  "scripts": {
61
61
  "build": "tsc",