@getenki/ai-darwin-arm64 0.2.7 → 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 +9 -0
- package/enki-ai.darwin-arm64.node +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -287,6 +287,13 @@ The repository examples in [`example/basic-js/index.js`](/I:/projects/enki/core-
|
|
|
287
287
|
- a `get_today` tool
|
|
288
288
|
- an in-memory `Map` for session memory storage
|
|
289
289
|
|
|
290
|
+
There are also richer examples in [`example/basic-js/multi-agent-tools-memory.js`](/I:/projects/enki/core-next/example/basic-js/multi-agent-tools-memory.js) and [`example/basic-ts/multi-agent-tools-memory.ts`](/I:/projects/enki/core-next/example/basic-ts/multi-agent-tools-memory.ts). Those examples show:
|
|
291
|
+
|
|
292
|
+
- a researcher agent with a custom `lookup_example_topics` tool
|
|
293
|
+
- a coordinator agent consuming a researcher handoff via its own tool
|
|
294
|
+
- shared in-process memory across both agents
|
|
295
|
+
- progress logging so long-running model calls do not look stalled
|
|
296
|
+
|
|
290
297
|
Minimal JavaScript version:
|
|
291
298
|
|
|
292
299
|
```js
|
|
@@ -410,6 +417,7 @@ JavaScript example:
|
|
|
410
417
|
cd example/basic-js
|
|
411
418
|
npm install
|
|
412
419
|
npm start
|
|
420
|
+
npm run start:multi-agent-tools-memory
|
|
413
421
|
```
|
|
414
422
|
|
|
415
423
|
TypeScript example:
|
|
@@ -418,6 +426,7 @@ TypeScript example:
|
|
|
418
426
|
cd example/basic-ts
|
|
419
427
|
npm install
|
|
420
428
|
npm start
|
|
429
|
+
npm run start:multi-agent-tools-memory
|
|
421
430
|
```
|
|
422
431
|
|
|
423
432
|
The checked-in examples currently hardcode `ollama::qwen3.5:latest` as the model, so make sure that model is available in your local provider before running them.
|
|
Binary file
|