Documentation Index
Fetch the complete documentation index at: https://kremis.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
/signal/retractPOST /signal ingest. The weight is never decremented below 0 — negative
weights are architecturally forbidden because strongest_path uses DFS with
backtracking to find the maximum-weight simple path, and negative weights
would make the problem ill-defined.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
from_entity | integer (u64) | Yes | Entity ID of the source node. |
to_entity | integer (u64) | Yes | Entity ID of the destination node. |
Response
| Field | Type | Description |
|---|---|---|
success | boolean | Whether the retraction was applied. |
new_weight | integer or null | Updated edge weight (floored at 0) if successful. |
error | string or null | Error message if failed. |
The weight floor is 0, not −1. If you retract more times than you ingested,
the weight stays at 0 rather than going negative.