@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.
- package/README.md +3 -3
- 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
|
|
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
|
|
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
|
|
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