@aionis/sdk 0.2.28 → 0.3.0

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 +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -107,7 +107,7 @@ For token-sensitive Agent calls, request compact prompt rendering:
107
107
 
108
108
  ```ts
109
109
  const compactGuide = await aionis.guide({
110
- query_text: "Continue the task without repeating failed work.",
110
+ query_text: "Continue the task from the current accepted state.",
111
111
  consumer_agent_id: "agent-1",
112
112
  context_mode: "compact_agent",
113
113
  });
@@ -328,7 +328,7 @@ Product guide:
328
328
 
329
329
  ```ts
330
330
  const result = await aionis.governMemory({
331
- query_text: "Continue the checkout migration without reusing failed branches.",
331
+ query_text: "Continue the checkout migration from the current accepted state.",
332
332
  mode: "firewall",
333
333
  include_records: true,
334
334
  candidates: [
@@ -377,7 +377,7 @@ const mem0Results = await mem0.search("Continue checkout migration", {
377
377
  });
378
378
 
379
379
  const governed = await aionis.governMem0SearchResults({
380
- query_text: "Continue checkout migration without repeating failed branches.",
380
+ query_text: "Continue checkout migration from the current accepted state.",
381
381
  run_id: "run-001",
382
382
  mem0_results: mem0Results,
383
383
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aionis/sdk",
3
- "version": "0.2.28",
3
+ "version": "0.3.0",
4
4
  "description": "TypeScript SDK facade for the Aionis state-adjudicated memory Runtime.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://docs.aionis.work/plugins/sdk",