@darkhorseprojects/circuitry 0.3.1 → 0.3.3

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/node.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import type { CircuitryHost } from "./host";
2
2
  import type { CircuitryGraph, CircuitryRuntimeInputs, CircuitryValidationStandard } from "./graph";
3
3
  import type { NodeExecutionRequest, NodeExecutionResult, SimulationRunItem } from "./simulation";
4
- export declare const runNodeWithPiSDK: ({ model, prompt, images, tools, thinkingLevel, }: NodeExecutionRequest) => Promise<NodeExecutionResult>;
4
+ export declare const runNodeWithPiSDK: ({ model, prompt, images, tools, }: NodeExecutionRequest) => Promise<NodeExecutionResult>;
5
5
  export type CircuitryResourceOrigins = Record<string, string>;
6
6
  export type LoadedCircuitryGraph = {
7
7
  filename: string;
@@ -15,7 +15,7 @@ export declare class NodeCircuitryHost implements CircuitryHost {
15
15
  private runFileFor;
16
16
  private exists;
17
17
  private parseIssue;
18
- private parseGraphForValidation;
18
+ private parseSourceGraph;
19
19
  private parseAndResolveGraph;
20
20
  private readGraphFile;
21
21
  readGraph(input?: {
@@ -24,7 +24,7 @@ export declare class NodeCircuitryHost implements CircuitryHost {
24
24
  filename: string;
25
25
  graph: CircuitryGraph;
26
26
  text: string;
27
- lastRun: any;
27
+ lastRun: unknown;
28
28
  }>;
29
29
  validateGraph(input: {
30
30
  text?: string;