@adriane-ai/graph-sdk 0.1.0-rc.1 → 0.1.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 +4 -4
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +6 -8
package/dist/index.d.ts
CHANGED
|
@@ -1814,10 +1814,10 @@ type RunOptions = {
|
|
|
1814
1814
|
* event bus, runtime) so callers don't touch the lower-level `@adriane-ai/graph-runtime`
|
|
1815
1815
|
* primitives unless they want to.
|
|
1816
1816
|
*
|
|
1817
|
-
* Execution runs on the **Rust engine** via `@adriane-ai/napi`
|
|
1818
|
-
*
|
|
1819
|
-
* the
|
|
1820
|
-
*
|
|
1817
|
+
* Execution runs on the **Rust engine** via `@adriane-ai/napi` (a required dependency).
|
|
1818
|
+
* An in-process TypeScript {@link GraphRuntime} backs development and tests (and
|
|
1819
|
+
* platforms the native addon doesn't cover); the public API is identical either way —
|
|
1820
|
+
* `run` / `resume` / `approveAndResume` / `stream` / `onEvent` behave the same.
|
|
1821
1821
|
*/
|
|
1822
1822
|
declare class CompiledGraph<TState extends ChannelValues = ChannelValues> {
|
|
1823
1823
|
readonly definition: GraphDefinition;
|
package/dist/index.js
CHANGED
|
@@ -2494,7 +2494,7 @@ var warnTsEngineOnce = () => {
|
|
|
2494
2494
|
}
|
|
2495
2495
|
warnedTsFallback = true;
|
|
2496
2496
|
console.warn(
|
|
2497
|
-
"[@adriane-ai/graph-sdk]
|
|
2497
|
+
"[@adriane-ai/graph-sdk] Running on the in-process TypeScript engine (development/test path). Adriane requires the Rust engine in production \u2014 install the native addon (npm install @adriane-ai/napi)."
|
|
2498
2498
|
);
|
|
2499
2499
|
};
|
|
2500
2500
|
var CompiledGraph = class {
|