Graphorin API reference v0.1.0
Graphorin API reference / @graphorin/memory / / ConflictPipeline
Interface: ConflictPipeline
Defined in: packages/memory/src/conflict/types.ts:179
Pre-built pipeline returned by createConflictPipeline. The run method is what SemanticMemory.remember(...) calls to make the conflict decision.
Stable
Properties
| Property | Modifier | Type | Defined in |
|---|---|---|---|
localePack | readonly | LocalePack | packages/memory/src/conflict/types.ts:181 |
mode | readonly | "on" | "off" | packages/memory/src/conflict/types.ts:180 |
thresholds | readonly | ConflictThresholds | packages/memory/src/conflict/types.ts:182 |
Methods
run()
ts
run(deps, candidate): Promise<ConflictDecision>;Defined in: packages/memory/src/conflict/types.ts:183
Parameters
| Parameter | Type |
|---|---|
deps | ConflictPipelineDeps |
candidate | Fact |
Returns
Promise<ConflictDecision>