fbp-evaluator
Installation
SKILL.md
Lazy graph evaluator for Flow-Based Programming.
Installation
pnpm add @fbp/evaluator
Overview
@fbp/evaluator provides a lazy evaluation engine for FBP graphs. It only evaluates nodes that are needed for the requested output, making it efficient for large graphs where only a subset of nodes contribute to the result.
Basic Usage
import { evaluate } from '@fbp/evaluator';
import type { Graph } from '@fbp/types';
import type { NodeDefinitionWithImpl } from '@fbp/evaluator';