rootmemory 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. rootmemory/__init__.py +84 -0
  2. rootmemory/api/__init__.py +25 -0
  3. rootmemory/api/agents.py +38 -0
  4. rootmemory/api/beliefs.py +66 -0
  5. rootmemory/api/claims.py +87 -0
  6. rootmemory/api/deps.py +21 -0
  7. rootmemory/api/errors.py +36 -0
  8. rootmemory/api/graph.py +32 -0
  9. rootmemory/api/invalidation.py +47 -0
  10. rootmemory/api/observations.py +46 -0
  11. rootmemory/api/promotion.py +37 -0
  12. rootmemory/api/provenance.py +88 -0
  13. rootmemory/api/security.py +53 -0
  14. rootmemory/cli.py +96 -0
  15. rootmemory/client.py +219 -0
  16. rootmemory/config.py +64 -0
  17. rootmemory/db/__init__.py +0 -0
  18. rootmemory/db/base.py +42 -0
  19. rootmemory/db/migrations/env.py +59 -0
  20. rootmemory/db/migrations/script.py.mako +26 -0
  21. rootmemory/db/migrations/versions/d336d5cf7fb9_initial_schema.py +260 -0
  22. rootmemory/db/session.py +138 -0
  23. rootmemory/errors.py +27 -0
  24. rootmemory/integrations/__init__.py +16 -0
  25. rootmemory/integrations/async_client.py +268 -0
  26. rootmemory/integrations/langchain_tools.py +237 -0
  27. rootmemory/integrations/langgraph_memory.py +179 -0
  28. rootmemory/integrations/langgraph_store.py +402 -0
  29. rootmemory/logging_config.py +30 -0
  30. rootmemory/main.py +133 -0
  31. rootmemory/models/__init__.py +22 -0
  32. rootmemory/models/agent.py +30 -0
  33. rootmemory/models/audit.py +51 -0
  34. rootmemory/models/belief.py +39 -0
  35. rootmemory/models/claim.py +52 -0
  36. rootmemory/models/decision.py +38 -0
  37. rootmemory/models/edge.py +43 -0
  38. rootmemory/models/enums.py +104 -0
  39. rootmemory/models/node_ref.py +42 -0
  40. rootmemory/models/observation.py +51 -0
  41. rootmemory/py.typed +0 -0
  42. rootmemory/repositories/__init__.py +19 -0
  43. rootmemory/repositories/agent_repo.py +44 -0
  44. rootmemory/repositories/audit_repo.py +43 -0
  45. rootmemory/repositories/belief_repo.py +63 -0
  46. rootmemory/repositories/claim_repo.py +102 -0
  47. rootmemory/repositories/decision_repo.py +76 -0
  48. rootmemory/repositories/edge_repo.py +77 -0
  49. rootmemory/repositories/observation_repo.py +76 -0
  50. rootmemory/schemas/__init__.py +52 -0
  51. rootmemory/schemas/agent.py +26 -0
  52. rootmemory/schemas/belief.py +49 -0
  53. rootmemory/schemas/claim.py +54 -0
  54. rootmemory/schemas/common.py +27 -0
  55. rootmemory/schemas/observation.py +69 -0
  56. rootmemory/schemas/promotion.py +50 -0
  57. rootmemory/schemas/provenance.py +51 -0
  58. rootmemory/services/__init__.py +35 -0
  59. rootmemory/services/belief_service.py +161 -0
  60. rootmemory/services/contradiction_service.py +148 -0
  61. rootmemory/services/decision_service.py +65 -0
  62. rootmemory/services/graph_service.py +316 -0
  63. rootmemory/services/independence_service.py +159 -0
  64. rootmemory/services/invalidation_service.py +164 -0
  65. rootmemory/services/normalization_service.py +234 -0
  66. rootmemory/services/promotion_service.py +318 -0
  67. rootmemory/services/provenance_service.py +282 -0
  68. rootmemory/services/scoring_service.py +53 -0
  69. rootmemory/static/index.html +866 -0
  70. rootmemory-0.1.0.dist-info/METADATA +266 -0
  71. rootmemory-0.1.0.dist-info/RECORD +75 -0
  72. rootmemory-0.1.0.dist-info/WHEEL +5 -0
  73. rootmemory-0.1.0.dist-info/entry_points.txt +2 -0
  74. rootmemory-0.1.0.dist-info/licenses/LICENSE +21 -0
  75. rootmemory-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,266 @@
1
+ Metadata-Version: 2.4
2
+ Name: rootmemory
3
+ Version: 0.1.0
4
+ Summary: Provenance-aware memory for multi-agent AI systems: tells corroboration apart from repetition
5
+ Author-email: Shubham Ambavane <ambavane26@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/Shubs5758/RootMemory
8
+ Project-URL: Repository, https://github.com/Shubs5758/RootMemory
9
+ Project-URL: Issues, https://github.com/Shubs5758/RootMemory/issues
10
+ Project-URL: Documentation, https://github.com/Shubs5758/RootMemory#readme
11
+ Keywords: ai,agents,multi-agent,memory,provenance,langgraph,langchain,knowledge-graph,evidence
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
18
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
19
+ Classifier: Topic :: Database
20
+ Classifier: Typing :: Typed
21
+ Requires-Python: >=3.12
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Requires-Dist: sqlalchemy>=2.0
25
+ Requires-Dist: pydantic>=2.7
26
+ Requires-Dist: pydantic-settings>=2.3
27
+ Requires-Dist: structlog>=24.1
28
+ Provides-Extra: api
29
+ Requires-Dist: fastapi>=0.115; extra == "api"
30
+ Requires-Dist: uvicorn[standard]>=0.30; extra == "api"
31
+ Requires-Dist: alembic>=1.13; extra == "api"
32
+ Provides-Extra: postgres
33
+ Requires-Dist: psycopg[binary]>=3.1; extra == "postgres"
34
+ Provides-Extra: langchain
35
+ Requires-Dist: langchain-core>=0.3; extra == "langchain"
36
+ Provides-Extra: langgraph
37
+ Requires-Dist: langgraph>=0.2; extra == "langgraph"
38
+ Requires-Dist: langchain-core>=0.3; extra == "langgraph"
39
+ Provides-Extra: llm
40
+ Requires-Dist: openai>=1.30; extra == "llm"
41
+ Provides-Extra: all
42
+ Requires-Dist: fastapi>=0.115; extra == "all"
43
+ Requires-Dist: uvicorn[standard]>=0.30; extra == "all"
44
+ Requires-Dist: alembic>=1.13; extra == "all"
45
+ Requires-Dist: psycopg[binary]>=3.1; extra == "all"
46
+ Requires-Dist: langgraph>=0.2; extra == "all"
47
+ Requires-Dist: langchain-core>=0.3; extra == "all"
48
+ Requires-Dist: openai>=1.30; extra == "all"
49
+ Provides-Extra: dev
50
+ Requires-Dist: pytest>=8.2; extra == "dev"
51
+ Requires-Dist: pytest-asyncio>=0.23; extra == "dev"
52
+ Requires-Dist: httpx>=0.27; extra == "dev"
53
+ Requires-Dist: mypy>=1.10; extra == "dev"
54
+ Requires-Dist: ruff>=0.5; extra == "dev"
55
+ Requires-Dist: build>=1.2; extra == "dev"
56
+ Requires-Dist: twine>=5.1; extra == "dev"
57
+ Dynamic: license-file
58
+
59
+ # RootMemory
60
+
61
+ **Provenance-aware memory for multi-agent AI systems. It tells corroboration apart from repetition.**
62
+
63
+ [![PyPI](https://img.shields.io/pypi/v/rootmemory.svg)](https://pypi.org/project/rootmemory/)
64
+ [![Python](https://img.shields.io/pypi/pyversions/rootmemory.svg)](https://pypi.org/project/rootmemory/)
65
+ [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
66
+
67
+ ```bash
68
+ pip install rootmemory
69
+ ```
70
+
71
+ ## The problem
72
+
73
+ A customer writes *"we're targeting October, but the date isn't final."*
74
+
75
+ ```
76
+ Agent A reads the email -> "the deadline is October 15"
77
+ Agent B reads Agent A -> "the deadline is October 15"
78
+ Agent C reads Agent B -> "the deadline is October 15"
79
+ ```
80
+
81
+ Your shared memory now shows three agents agreeing. There is still only **one**
82
+ source, and it did not say that. Every belief traces back to the same email —
83
+ but a list of conclusions has forgotten that, so the system counts three votes
84
+ and acts.
85
+
86
+ RootMemory keeps those numbers apart:
87
+
88
+ ```
89
+ agreeing agents 3
90
+ supporting beliefs 3
91
+ independent evidence roots 1 <- the only number that reflects reality
92
+ ```
93
+
94
+ ## Quick start
95
+
96
+ ```python
97
+ from rootmemory import RootMemory, open_memory
98
+
99
+ with open_memory("sqlite+pysqlite:///memory.db") as session:
100
+ memory = RootMemory(session)
101
+
102
+ research = memory.register_agent("ResearchAgent")
103
+ risk = memory.register_agent("RiskAgent")
104
+ exec_ = memory.register_agent("DecisionAgent")
105
+
106
+ # evidence from the outside world
107
+ article = memory.create_observation("news", "Revenue may have slipped.")
108
+
109
+ # three agents, but only the first one read the article
110
+ b1 = memory.create_belief(research.id, "Supplier under pressure.", "risk", 0.6, [article])
111
+ b2 = memory.create_belief(risk.id, "Supplier is unstable.", "risk", 0.8, [b1])
112
+ b3 = memory.create_belief(exec_.id, "Significant risk.", "risk", 0.85, [b2])
113
+
114
+ claim = memory.get_or_create_claim("risk", "Supplier is in distress.")
115
+ for belief in (b1, b2, b3):
116
+ memory.support_claim(claim.id, belief.id)
117
+
118
+ verdict = memory.evaluate_claim(claim.id)
119
+ ```
120
+
121
+ ```
122
+ agreeing agents 3
123
+ supporting beliefs 3
124
+ independent sources 1
125
+ decision REJECT
126
+ why 3 supporting beliefs descend from a single evidence source.
127
+ ```
128
+
129
+ Add a genuinely separate source and it promotes. That is the entire idea.
130
+
131
+ ## How it works
132
+
133
+ Four objects, one rule.
134
+
135
+ | Object | What it is |
136
+ | --- | --- |
137
+ | **Observation** | evidence from outside. Immutable — only its validity can change. |
138
+ | **Belief** | what an agent concluded. Must cite what it came from. |
139
+ | **Claim** | a proposition beliefs support or contradict. |
140
+ | **Decision** | an action taken because of a claim. |
141
+
142
+ **The rule: every belief must say what it was derived from.** RootMemory refuses
143
+ to store one that cites nothing. That turns memory into a family tree, so any
144
+ belief can be walked back to the real-world evidence at the bottom.
145
+
146
+ A claim enters shared memory only through the **promotion gate**, which counts
147
+ independent evidence roots — never agreeing agents. Contradictions are
148
+ preserved rather than overwritten. And retracting a source walks *forward*
149
+ through everything built on it: beliefs are retracted, claims downgraded,
150
+ dependent decisions flagged `needs_review`.
151
+
152
+ ## Plugging into a framework
153
+
154
+ The core imports no agent framework. Adapters are optional extras.
155
+
156
+ ### LangChain / LangGraph long-term memory
157
+
158
+ ```bash
159
+ pip install "rootmemory[langgraph]"
160
+ ```
161
+
162
+ ```python
163
+ from langchain.agents import create_agent
164
+ from rootmemory.integrations.langgraph_store import RootMemoryStore
165
+
166
+ agent = create_agent(model=..., tools=[...], store=RootMemoryStore(agent_id=risk_id))
167
+ ```
168
+
169
+ `BaseStore.put` has nowhere to say *"here is what I read first"*, so the adapter
170
+ infers it: the store remembers what it served to that agent and cites it as the
171
+ parents of whatever it writes next. Provenance capture with no cooperation from
172
+ the model.
173
+
174
+ ### Tools that force citation
175
+
176
+ ```python
177
+ from rootmemory.integrations.langchain_tools import build_tools
178
+ model = model.bind_tools(build_tools(memory, agent_id))
179
+ ```
180
+
181
+ `derived_from` is a **required** field in the tool schema, so a model cannot
182
+ record an opinion without saying what it read.
183
+
184
+ ### LangGraph nodes
185
+
186
+ ```python
187
+ from rootmemory.integrations.langgraph_memory import MemoryState, remembering
188
+
189
+ graph.add_node("risk", remembering(memory, risk_id, claim_key="supplier_risk")(assess))
190
+ ```
191
+
192
+ State carries belief ids, not just text — text has forgotten where it came from.
193
+
194
+ ### Anything else
195
+
196
+ `AsyncRootMemory` is plain async Python with no framework types in its
197
+ signatures. Non-Python agents can use the REST API.
198
+
199
+ ## Optional extras
200
+
201
+ | Extra | Adds |
202
+ | --- | --- |
203
+ | `rootmemory[api]` | FastAPI service, Alembic migrations, and the visual portal at `/ui` |
204
+ | `rootmemory[langgraph]` | LangGraph store, node wrapper, LangChain tools |
205
+ | `rootmemory[postgres]` | PostgreSQL driver |
206
+ | `rootmemory[llm]` | LLM-backed claim normalization |
207
+ | `rootmemory[all]` | everything |
208
+
209
+ The core depends only on SQLAlchemy, Pydantic and structlog. Importing the
210
+ memory engine will not drag in a web framework.
211
+
212
+ ## The portal
213
+
214
+ ```bash
215
+ pip install "rootmemory[api]"
216
+ rootmemory serve
217
+ ```
218
+
219
+ Open <http://localhost:8000/ui>. Observations form the floor and everything
220
+ built on them stacks above, so an echo chain renders as a tall thin tower on a
221
+ single foundation. Click any node to trace it back to the evidence it actually
222
+ came from; everything off that path dims.
223
+
224
+ ## Design rules
225
+
226
+ * Every belief has at least one causal parent. No provenance, no shared memory.
227
+ * Observations are never edited or deleted, only marked invalid.
228
+ * Only the promotion service may confirm a claim.
229
+ * Contradictions are preserved, never overwritten.
230
+ * Graph cycles are refused.
231
+ * Agreement count and independent-evidence count are always reported separately.
232
+ * The core is deterministic. An LLM may write belief text; it never decides what
233
+ counts as evidence.
234
+
235
+ ## Measured against a naive shared scratchpad
236
+
237
+ Same beliefs, same confidences, same thresholds — the baseline just has no
238
+ ancestry to consult.
239
+
240
+ | Metric | RootMemory | Shared scratchpad |
241
+ | --- | --- | --- |
242
+ | False corroboration rate | **0.0** | 0.25 |
243
+ | Wrong-action rate | **0.0** | 0.5 |
244
+ | Promotion precision | **1.0** | 0.5 |
245
+ | Repair completeness | **1.0** | 0.0 |
246
+
247
+ Cost: roughly 5–6x more rows, because the family tree is kept alongside the
248
+ conclusions.
249
+
250
+ ## Documentation
251
+
252
+ * [Running it](docs/running.md) — step-by-step, including the demo and portal
253
+ * [Architecture](docs/architecture.md) — the four algorithms in detail
254
+ * [API reference](docs/api.md)
255
+ * [Deployment](docs/deployment.md) — config, auth, claim normalization, rollout
256
+ * [Evaluation](docs/evaluation.md) — generated benchmark results
257
+
258
+ ## Status
259
+
260
+ Working, tested MVP: 144 tests, type-checked and linted. Runs on SQLite with no
261
+ server. PostgreSQL is supported and its migration renders correct DDL, but has
262
+ not yet been exercised against a live server.
263
+
264
+ ## License
265
+
266
+ MIT
@@ -0,0 +1,75 @@
1
+ rootmemory/__init__.py,sha256=2Xl_Kllzi93yjmB9QjGxCMO0oRPGy5INeliSCyzwUPg,2493
2
+ rootmemory/cli.py,sha256=eYmSlxtlllpdfEYjQjbZzeIeCsWiLwU4vDfgML1wk8o,2788
3
+ rootmemory/client.py,sha256=05WPhY4FL97rRSAhh23LlWYxbGC0lP2WfECr5gFwONE,9161
4
+ rootmemory/config.py,sha256=WwWy5NducPlm5ppZwsrhiSqT-fWW1RgcHsPyZXe4fOo,2425
5
+ rootmemory/errors.py,sha256=G52GTYYm0RaIsM7TDYzZoAEa8AMnba99SxwFnxowi9A,828
6
+ rootmemory/logging_config.py,sha256=hprZJcgi8d3LevC4OgL3oLHc6AaE5TEj5lw-wYENnM0,955
7
+ rootmemory/main.py,sha256=tlEbR1M5xf-o092TC8DSr6yh-4877Sf6XFmx8_x8RWw,4405
8
+ rootmemory/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ rootmemory/api/__init__.py,sha256=FpmKC4OGtPqHb-IZxC1ZJBX8_oRmK2QEpdPvuCjNM9k,450
10
+ rootmemory/api/agents.py,sha256=bRTIEst0m8_-uUWLS4_p-pzJ8H_9yL8fjq4ktN5kKIY,1271
11
+ rootmemory/api/beliefs.py,sha256=745G1iysyo_A9yw2Rz9FIVqdrH2qzrr3sRiMOHj433s,2603
12
+ rootmemory/api/claims.py,sha256=Th9ekzm1tIqtg0uufE3bI4NecWUqGTV0dkUCFdD6s74,3442
13
+ rootmemory/api/deps.py,sha256=nRowDSU-xTtoGohJdP2yhBD-WS-JeAVjpgMGfQ5JO-s,508
14
+ rootmemory/api/errors.py,sha256=DlvD-GDo4TSbvQ-QAKvh6q1810AJdnaepZs6KZUMBIc,1109
15
+ rootmemory/api/graph.py,sha256=St0qc0HZ2hrE9Gc9S2DeAQWjmGZGey_E2sfFS45mfvA,1134
16
+ rootmemory/api/invalidation.py,sha256=aMZfopV9BunQR1KVfpdWGgGIiKKP2ubeIPcf3BjSFNs,1787
17
+ rootmemory/api/observations.py,sha256=LtwJZ74-K1D5t-zanb_zGbtq_vp2OJy29TAxj66ej1g,1835
18
+ rootmemory/api/promotion.py,sha256=0tvp0ZzDwRcD4ZLzyP-Vaaq18tN04O0v86Gh9zwYScs,1618
19
+ rootmemory/api/provenance.py,sha256=LAkunI0ty-lMrdLm4fBY5VKECqXZhy455eP4x0uVkVc,3298
20
+ rootmemory/api/security.py,sha256=Bg6cnWAylOTxTcHsHIG2k3H6mSwF_JG9K-O-KaQpQs8,1895
21
+ rootmemory/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ rootmemory/db/base.py,sha256=I95-c-9e3KGVLsfz6k0V3c7PzwHbl_Ge94QCQ1o1c7I,1296
23
+ rootmemory/db/session.py,sha256=ZZlMtyvVRJZBrOOcHTmGJRkQTpn2W4T4gkRf5yYj5co,4531
24
+ rootmemory/db/migrations/env.py,sha256=rxUiy1G3-ly9jPl_IhL3qoaY35pEw89nQKRvqaCavZQ,1696
25
+ rootmemory/db/migrations/script.py.mako,sha256=0ykYGifheMDY3x5NZv0u221fTFHS3tGM3n8TpqMnPC8,615
26
+ rootmemory/db/migrations/versions/d336d5cf7fb9_initial_schema.py,sha256=HxayCbP3C4N1ZJCuquSbbQQATocCPLu4r_MB0AZuTgE,14735
27
+ rootmemory/integrations/__init__.py,sha256=MKg7I8vqdmdoWMNzjnL1vcT4EURBkroNRLQv2BAzXig,767
28
+ rootmemory/integrations/async_client.py,sha256=bDh3LfXYtheXsnyhaZOCj9A1TgeHuGEeClkKbiPpWA0,10186
29
+ rootmemory/integrations/langchain_tools.py,sha256=v3Rw7my7t0xQGn9qLYEg2iGiXRpHkLGMNTlqeqPKueA,9198
30
+ rootmemory/integrations/langgraph_memory.py,sha256=KZh8zxlabHTAwpBApc8ZrRTUvkyUW9-w4MCtoDjzueo,6687
31
+ rootmemory/integrations/langgraph_store.py,sha256=oz55Tizc8OizkosSaxATafkmLA-kYqo-MWnuHTnLCdc,16513
32
+ rootmemory/models/__init__.py,sha256=0RMX11Uqt-pOL1eOjMj_JDc0CTH-Bi1q9GPMY57nG1Q,673
33
+ rootmemory/models/agent.py,sha256=c0D3-ssMy-n0HAYDrPj_7HDB7vTbDsEJcNDwSlmkcR8,1061
34
+ rootmemory/models/audit.py,sha256=dGb4qWT63UwEeAWvJI226gvTJijbG2sMaWZJUoKJxdQ,2313
35
+ rootmemory/models/belief.py,sha256=aBgY5bVe6W83Qw-lQmsjl8sAYDOz3T4OBFsV_RYZSjU,1629
36
+ rootmemory/models/claim.py,sha256=BVjtRZWcUHqqOUlDemsTYAMg1DGYA3QlXte0LJo-yDE,2234
37
+ rootmemory/models/decision.py,sha256=qA_TrjVxOb2Au0Hw4DDlxgcLT2PohcOK_zLVc_ENYtk,1519
38
+ rootmemory/models/edge.py,sha256=7fTi_e1As6CBDhKul-wSwrZKDhkPrXr6ktTrYgJgjso,1681
39
+ rootmemory/models/enums.py,sha256=aWPxSABBsCmUcX-aFHxKdpUpNP7kcwmUZYOZ7Ix2qp4,2881
40
+ rootmemory/models/node_ref.py,sha256=MRUOYJ0eX3blAyo8PxUFbNTg_aGGMkLXP3HnNwAK25M,1163
41
+ rootmemory/models/observation.py,sha256=jd6ja1QqzOvhKGD96r0w7URUgNwhiztPiRKVizc80vw,2174
42
+ rootmemory/repositories/__init__.py,sha256=4V-XHHwFFL4DRdO6dLRZhqNanKdwE5UFASoKj9U78oQ,727
43
+ rootmemory/repositories/agent_repo.py,sha256=DEmjawljXdgCxZHczcbUG_VCPQRmcH9soRjLEk97bww,1221
44
+ rootmemory/repositories/audit_repo.py,sha256=vVMjGC3rpws1x8TKlPH-htWF9fa6CXjUicfEc2kZe7w,1431
45
+ rootmemory/repositories/belief_repo.py,sha256=EQErnpcNRhPh_Xatb7HnBgeVj5rDfL_1773nSNzInQQ,2207
46
+ rootmemory/repositories/claim_repo.py,sha256=9USBw5a7_LEfMMQN6jEXfZ4WLL11RM_G2AcaKcl9COk,3969
47
+ rootmemory/repositories/decision_repo.py,sha256=sThZ4HSuAA_opYKXX_wKbq6UkSXi1YoUKAKvvIveGVw,2665
48
+ rootmemory/repositories/edge_repo.py,sha256=48WSGxGvQSpgO5j-Ld0k5KDnCJZTAyHthcGuXHK9Rgo,2842
49
+ rootmemory/repositories/observation_repo.py,sha256=aZOBMU0CLfIlmUeftjfthpoPA12SBl-n9ylpOj9Hedc,2705
50
+ rootmemory/schemas/__init__.py,sha256=jUjRjAHnWH-FNzW9SbBBz1b-XgT349zASAJ8ttvK8Yw,1404
51
+ rootmemory/schemas/agent.py,sha256=bWjGOScO33RURZE_rnbapmAPnTHqKrFur1fEBzQr0QI,563
52
+ rootmemory/schemas/belief.py,sha256=HMQHReLDbHY4MLnUfNl97h6iBS9012trEeVZ4OO_Q98,1385
53
+ rootmemory/schemas/claim.py,sha256=FdtfdTjpf5nXWvq6Qp9msAu-brWRB38AIx-CJyR82MI,1364
54
+ rootmemory/schemas/common.py,sha256=diVdM7OZ3KChRwZIE3VspXzfEoJx1-inyIQWd_f-8xI,603
55
+ rootmemory/schemas/observation.py,sha256=akzHxD-ipgAD1hJ9o_Eeiko_6h-1DGPL6Gv3BXIPr68,1953
56
+ rootmemory/schemas/promotion.py,sha256=fhMhXOGUD_B04SK-jkxgTEChXXtYnm4F6_Oh7mcoYcg,1352
57
+ rootmemory/schemas/provenance.py,sha256=2p10tsV9IC80kWVT-J8ZzulhfEttOyr9UsWwzpfI9mk,1434
58
+ rootmemory/services/__init__.py,sha256=j400xFyJh4tML9oTPA5a5AGpvHijjAUQiTCbrxbaCi4,1132
59
+ rootmemory/services/belief_service.py,sha256=hjsScTJFbVtcTFiUf8kJ2f49VeZqubkWf8BTOexN_QM,6340
60
+ rootmemory/services/contradiction_service.py,sha256=Iry30qvCfNit3qMf5N14F5D3PTsV-jeqWmjFaUzLxzA,6511
61
+ rootmemory/services/decision_service.py,sha256=5ltUkD_oGL0uNGai5atawyZWPmo6FOcw3Z-MkaXYAD4,2679
62
+ rootmemory/services/graph_service.py,sha256=qEu_01x4pClI7SOIYlxsTeqwh4pdErAjW1u0UXZXvSw,12919
63
+ rootmemory/services/independence_service.py,sha256=-bpGK_BPtDs4Ut8BykNkUMsH3Lx4rDtTeNhiCmwVZzc,6563
64
+ rootmemory/services/invalidation_service.py,sha256=rSBhKCozfas-d8qRscXHVa9ttLRwXiGfQNK5KCdRC_M,7169
65
+ rootmemory/services/normalization_service.py,sha256=D5KkK8uIZ-U1r1m9kOwhD5hUKd7UTTEz7Y8HzOGrwgo,9656
66
+ rootmemory/services/promotion_service.py,sha256=gE9CGfApEJ00w-tw3ipoG2ZmQCzqY3jMpD1LAaZwK1M,13910
67
+ rootmemory/services/provenance_service.py,sha256=mRw4Z88T6Gh1wFRL97yXvqe7qJwjMuBRvlr9GxgFcUU,11855
68
+ rootmemory/services/scoring_service.py,sha256=SExXRW_DlF6uqfgJU5J24MVIJOPr-B-PW2b9tXFFyXI,1788
69
+ rootmemory/static/index.html,sha256=Gc57Mbtm19zIGrr3F6iPy4XrRkiFQEvluWjHNN0Cu-w,33152
70
+ rootmemory-0.1.0.dist-info/licenses/LICENSE,sha256=WIDyXIUqkcXJWy_ejPCZvpleD7FowfPQPPSwuAnA-H0,1073
71
+ rootmemory-0.1.0.dist-info/METADATA,sha256=fEWoEwoBadSXE-PA2lflsBY-Sae0bxOTzfBshp7K7Y0,9830
72
+ rootmemory-0.1.0.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
73
+ rootmemory-0.1.0.dist-info/entry_points.txt,sha256=zWQW9781PlNJmCmBd3PYn9_lmQg0LR4QRAea_QMIANw,51
74
+ rootmemory-0.1.0.dist-info/top_level.txt,sha256=LdyFVegI0XXgoMokQ0P29np5zZ61fzEZOLvhsyFeVIM,11
75
+ rootmemory-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (84.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ rootmemory = rootmemory.cli:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Shubham Ambavane
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ rootmemory