@adriane-ai/graph-sdk 0.1.0-rc.1 → 0.2.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 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` when the native addon is
1818
- * present and the graph is one Rust can run faithfully; otherwise it falls back to
1819
- * the in-process TypeScript {@link GraphRuntime}. The public API is identical either
1820
- * way — `run` / `resume` / `approveAndResume` / `stream` / `onEvent` behave the same.
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] Executing on the deprecated in-process TypeScript engine. Install the native engine addon (npm install @adriane-ai/napi) to run on the Rust engine."
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 {