Skip to content

Graphorin API reference v0.1.0


Graphorin API reference / @graphorin/memory / / runConflictPipeline

Function: runConflictPipeline()

ts
function runConflictPipeline(args): Promise<ConflictDecision>;

Defined in: packages/memory/src/conflict/pipeline.ts:50

One-shot helper that mirrors RB-02 §8.1's runConflictPipeline({...}) spec — convenient for callers that do not need to pre-build + cache the pipeline. Production wiring should still go through createConflictPipeline (SemanticMemory re-uses the cached instance per Memory).

Parameters

ParameterType
args{ candidate: Fact; deps: ConflictPipelineDeps; options?: ConflictPipelineOptions; }
args.candidateFact
args.depsConflictPipelineDeps
args.options?ConflictPipelineOptions

Returns

Promise&lt;ConflictDecision&gt;

Stable