forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjit_runtime_contract_matrix.json
More file actions
114 lines (114 loc) · 3.11 KB
/
Copy pathjit_runtime_contract_matrix.json
File metadata and controls
114 lines (114 loc) · 3.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"schema_version": 1,
"memory_rows": [
{
"id": "legacy-memory",
"uid": "contract-user",
"content": "Legacy text remains readable.",
"created_at": "2026-08-23T00:00:00Z",
"updated_at": "2026-08-23T00:00:00Z",
"layer": "long_term",
"kind": "fact",
"slot": "must_not_be_authoritative"
},
{
"id": "v1-memory",
"uid": "contract-user",
"content": "The user lives in New York.",
"created_at": "2026-08-23T00:00:00Z",
"updated_at": "2026-08-23T00:00:00Z",
"layer": "long_term",
"ledger_schema_version": "knowledge_ledger.v1",
"kind": "fact",
"subject_scope": "primary_user",
"slot": "home_city",
"intent_backed": true,
"curation_weight": 3,
"write_reason": "direct_user_statement",
"evidence": [
{
"evidence_id": "memory-evidence-1",
"independence_group": "conversation-1"
}
]
},
{
"id": "future-memory",
"uid": "contract-user",
"content": "Future text remains readable but inert.",
"created_at": "2026-08-23T00:00:00Z",
"updated_at": "2026-08-23T00:00:00Z",
"layer": "long_term",
"ledger_schema_version": "knowledge_ledger.v2",
"kind": "fact",
"subject_scope": "primary_user",
"slot": "must_not_be_authoritative",
"intent_backed": true,
"future_ledger_field": {
"ignored_by_v1_clients": true
}
}
],
"chat_records": {
"legacy": {
"id": "legacy-message",
"text": "Legacy answer remains available."
},
"v1": {
"id": "v1-message",
"text": "Answer remains authoritative.",
"evidence": {
"schema_version": 1,
"request_id": "request-1",
"references": [
{
"id": "conversation-summary-1",
"kind": "conversation_summary",
"state": "available",
"conversation_id": "conversation-1"
}
]
}
},
"future": {
"id": "future-message",
"text": "Future answer remains available.",
"evidence": {
"schema_version": 2,
"request_id": "request-2",
"references": [
{
"id": "future-reference-1",
"kind": "future_kind",
"state": "future_state",
"future_reference_field": true
}
],
"future_envelope_field": true
}
}
},
"expected": {
"memory_ids": [
"legacy-memory",
"v1-memory",
"future-memory"
],
"authoritative_ledger_ids": [
"v1-memory"
],
"readable_text_by_id": {
"legacy-memory": "Legacy text remains readable.",
"v1-memory": "The user lives in New York.",
"future-memory": "Future text remains readable but inert."
},
"readable_chat_text_by_id": {
"legacy-message": "Legacy answer remains available.",
"v1-message": "Answer remains authoritative.",
"future-message": "Future answer remains available."
},
"v1_evidence_kind": "conversation_summary",
"future_evidence_kind": "unknown",
"future_evidence_state": "unknown"
}
}