@skein-js/core 0.9.0 → 0.10.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/dist/index.d.ts +5 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -370,7 +370,11 @@ interface QueuedRun {
|
|
|
370
370
|
*/
|
|
371
371
|
type RunProcessor = (run: QueuedRun) => Promise<void>;
|
|
372
372
|
interface RunConsumerOptions {
|
|
373
|
-
/**
|
|
373
|
+
/**
|
|
374
|
+
* Max runs a single consumer executes at once. Driver default 1 — the run worker always passes an
|
|
375
|
+
* explicit value (see `DEFAULT_RUN_CONCURRENCY` in `@skein-js/agent-protocol`). Per-thread
|
|
376
|
+
* serialization is the engine's guarantee, not the driver's.
|
|
377
|
+
*/
|
|
374
378
|
concurrency?: number;
|
|
375
379
|
}
|
|
376
380
|
/** A live consumer draining the queue; close it to stop pulling. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skein-js/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Framework-agnostic Agent Protocol engine for LangGraph.js — the heart of skein-js.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Maina Wycliffe <wmmaina7@gmail.com>",
|
|
@@ -29,7 +29,8 @@
|
|
|
29
29
|
"exports": {
|
|
30
30
|
".": {
|
|
31
31
|
"types": "./dist/index.d.ts",
|
|
32
|
-
"import": "./dist/index.js"
|
|
32
|
+
"import": "./dist/index.js",
|
|
33
|
+
"default": "./dist/index.js"
|
|
33
34
|
}
|
|
34
35
|
},
|
|
35
36
|
"files": [
|