Trust Quotient™ v2.0
Every memory stored in Synapse Layer receives a Trust Quotient (TQ) score between 0.0 and 1.0. This score determines how memories are ranked during recall.
What is TQ?
Trust Quotient (TQ) is a per-memory confidence score computed at store time. It represents how much the system should "trust" a given memory when deciding what to surface during recall.
TQ is not a static value — it can evolve over the memory’s lifecycle based on access patterns, consistency signals, and agent feedback.
The score is returned in every StoreResultand RecallResult, making it fully observable to the calling agent.
Scoring Factors
TQ v2.0 is computed from multiple weighted factors:
| Factor | Description |
|---|---|
| Confidence | The agent’s self-reported confidence when storing the memory (0.0–1.0) |
| Recency | Time decay — newer memories score higher, with configurable decay curve |
| Frequency | How often the memory has been accessed (recall count) |
| Source | Source type classification from the Intent Validation stage |
Note
How TQ Affects Recall
TQ directly influences recall behavior in two ways:
Priority Recall Mode
When recall_mode="priority" is used, memories are sorted by TQ score (highest first). This surfaces the most trusted memories regardless of semantic similarity or recency.
Hybrid Recall Mode
In recall_mode="hybrid", TQ is one of the ranking signals combined with semantic similarity and temporal recency to produce a blended result set.
Observability
TQ is designed to be transparent to agents:
- Returned in
StoreResult.trust_quotientafter every store - Returned in
RecallResult.trust_quotientfor each recalled memory - Visible in the Forge Dashboard under each memory’s detail view
- Stored as
tqScoreandtqVersionin the database
Boundaries
What TQ is NOT:
- Not a factual accuracy score — TQ reflects system confidence, not truth
- Not immutable — scores can change as access patterns evolve
- Not comparable across tenants — scores are meaningful only within a tenant context
- Not a guarantee of recall order — other recall modes may not use TQ at all