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
| Parameter | Type |
|---|---|
args | { candidate: Fact; deps: ConflictPipelineDeps; options?: ConflictPipelineOptions; } |
args.candidate | Fact |
args.deps | ConflictPipelineDeps |
args.options? | ConflictPipelineOptions |
Returns
Promise<ConflictDecision>