forget-ai 0.2.0__tar.gz

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 (284) hide show
  1. forget_ai-0.2.0/.gitignore +22 -0
  2. forget_ai-0.2.0/LICENSE +202 -0
  3. forget_ai-0.2.0/MANIFESTO.md +86 -0
  4. forget_ai-0.2.0/PKG-INFO +387 -0
  5. forget_ai-0.2.0/README.md +165 -0
  6. forget_ai-0.2.0/RELEASE.md +33 -0
  7. forget_ai-0.2.0/docs/research/long-term-memory-agenda.md +98 -0
  8. forget_ai-0.2.0/docs/research/longmemeval-results.md +329 -0
  9. forget_ai-0.2.0/docs/vault-design.md +254 -0
  10. forget_ai-0.2.0/forget/__init__.py +19 -0
  11. forget_ai-0.2.0/forget/cli.py +183 -0
  12. forget_ai-0.2.0/forget/consolidation.py +222 -0
  13. forget_ai-0.2.0/forget/crypto.py +239 -0
  14. forget_ai-0.2.0/forget/db.py +1382 -0
  15. forget_ai-0.2.0/forget/hybrid_workspace.py +748 -0
  16. forget_ai-0.2.0/forget/importers/__init__.py +0 -0
  17. forget_ai-0.2.0/forget/importers/git.py +273 -0
  18. forget_ai-0.2.0/forget/mcp.py +1293 -0
  19. forget_ai-0.2.0/forget/memory_engine.py +782 -0
  20. forget_ai-0.2.0/forget/policy_dataset.py +140 -0
  21. forget_ai-0.2.0/forget/ports.py +40 -0
  22. forget_ai-0.2.0/forget/preflight.py +231 -0
  23. forget_ai-0.2.0/forget/provider_matrix.py +417 -0
  24. forget_ai-0.2.0/forget/provider_runtime.py +1010 -0
  25. forget_ai-0.2.0/forget/providers.py +1351 -0
  26. forget_ai-0.2.0/forget/server.py +322 -0
  27. forget_ai-0.2.0/forget/store.py +16602 -0
  28. forget_ai-0.2.0/forget/utils.py +161 -0
  29. forget_ai-0.2.0/forget/vector_adapters.py +3737 -0
  30. forget_ai-0.2.0/hooks/forget_capture.py +193 -0
  31. forget_ai-0.2.0/hooks/forget_sessionstart.py +79 -0
  32. forget_ai-0.2.0/hooks/forget_turnrecall.py +192 -0
  33. forget_ai-0.2.0/packages/forget-connect/LICENSE +202 -0
  34. forget_ai-0.2.0/packages/forget-connect/README.md +125 -0
  35. forget_ai-0.2.0/packages/forget-connect/assets/hooks/forget_capture.py +193 -0
  36. forget_ai-0.2.0/packages/forget-connect/assets/hooks/forget_sessionstart.py +79 -0
  37. forget_ai-0.2.0/packages/forget-connect/assets/hooks/forget_turnrecall.py +192 -0
  38. forget_ai-0.2.0/packages/forget-connect/bin/forget-connect.js +9 -0
  39. forget_ai-0.2.0/packages/forget-connect/package-lock.json +19 -0
  40. forget_ai-0.2.0/packages/forget-connect/package.json +38 -0
  41. forget_ai-0.2.0/packages/forget-connect/src/cli.js +605 -0
  42. forget_ai-0.2.0/packages/forget-connect/src/core.js +741 -0
  43. forget_ai-0.2.0/packages/forget-connect/src/doctor.js +456 -0
  44. forget_ai-0.2.0/packages/forget-connect/src/hooks.js +250 -0
  45. forget_ai-0.2.0/packages/forget-connect/test/cli.test.js +309 -0
  46. forget_ai-0.2.0/packages/forget-connect/test/core.test.js +449 -0
  47. forget_ai-0.2.0/packages/forget-connect/test/doctor.test.js +591 -0
  48. forget_ai-0.2.0/packages/forget-connect/test/hooks.test.js +136 -0
  49. forget_ai-0.2.0/pyproject.toml +32 -0
  50. forget_ai-0.2.0/research/HANDOFF-longmemeval.md +49 -0
  51. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--001be529.json +1 -0
  52. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--00ca467f.json +1 -0
  53. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--06f04340.json +1 -0
  54. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--07b6f563.json +1 -0
  55. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--0bc8ad93.json +1 -0
  56. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--15745da0_abs.json +1 -0
  57. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--26bdc477.json +1 -0
  58. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--2ebe6c90.json +1 -0
  59. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--2ebe6c92.json +1 -0
  60. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--36580ce8.json +1 -0
  61. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--4388e9dd.json +1 -0
  62. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--50635ada.json +1 -0
  63. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--57f827a0.json +1 -0
  64. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--60d45044.json +1 -0
  65. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--66f24dbb.json +1 -0
  66. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--6ae235be.json +1 -0
  67. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--6b7dfb22.json +1 -0
  68. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--75f70248.json +1 -0
  69. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--7a87bd0c.json +1 -0
  70. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--81507db6.json +1 -0
  71. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--8464fc84.json +1 -0
  72. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--a06e4cfe.json +1 -0
  73. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--a40e080f.json +1 -0
  74. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--a89d7624.json +1 -0
  75. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--ad7109d1.json +1 -0
  76. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--affe2881.json +1 -0
  77. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--b0479f84.json +1 -0
  78. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--b29f3365.json +1 -0
  79. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--bf659f65.json +1 -0
  80. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--cc5ded98.json +1 -0
  81. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--ce6d2d27.json +1 -0
  82. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--ceb54acb.json +1 -0
  83. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--e8a79c70.json +1 -0
  84. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--edced276_abs.json +1 -0
  85. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--f523d9fe.json +1 -0
  86. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--f685340e.json +1 -0
  87. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--gpt4_1e4a8aeb.json +1 -0
  88. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--gpt4_4929293a.json +1 -0
  89. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--gpt4_59149c78.json +1 -0
  90. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--gpt4_731e37d7.json +1 -0
  91. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--gpt4_7fce9456.json +1 -0
  92. forget_ai-0.2.0/research/act3/cues/gpt-4o-mini--gpt4_e05b82a6.json +1 -0
  93. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--001be529.json +1 -0
  94. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--00ca467f.json +1 -0
  95. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--06f04340.json +1 -0
  96. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--07b6f563.json +1 -0
  97. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--0bc8ad93.json +1 -0
  98. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--26bdc477.json +1 -0
  99. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--2ebe6c90.json +1 -0
  100. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--2ebe6c92.json +1 -0
  101. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--36580ce8.json +1 -0
  102. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--4388e9dd.json +1 -0
  103. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--50635ada.json +1 -0
  104. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--57f827a0.json +1 -0
  105. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--60d45044.json +1 -0
  106. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--66f24dbb.json +1 -0
  107. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--6ae235be.json +1 -0
  108. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--6b7dfb22.json +1 -0
  109. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--75f70248.json +1 -0
  110. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--7a87bd0c.json +1 -0
  111. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--81507db6.json +1 -0
  112. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--8464fc84.json +1 -0
  113. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--a06e4cfe.json +1 -0
  114. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--a40e080f.json +1 -0
  115. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--a89d7624.json +1 -0
  116. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--ad7109d1.json +1 -0
  117. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--affe2881.json +1 -0
  118. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--b0479f84.json +1 -0
  119. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--b29f3365.json +1 -0
  120. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--bf659f65.json +1 -0
  121. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--cc5ded98.json +1 -0
  122. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--ce6d2d27.json +1 -0
  123. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--ceb54acb.json +1 -0
  124. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--e8a79c70.json +1 -0
  125. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--f523d9fe.json +1 -0
  126. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--f685340e.json +1 -0
  127. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--gpt4_1e4a8aeb.json +1 -0
  128. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--gpt4_4929293a.json +1 -0
  129. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--gpt4_59149c78.json +1 -0
  130. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--gpt4_731e37d7.json +1 -0
  131. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--gpt4_7fce9456.json +1 -0
  132. forget_ai-0.2.0/research/act3/cues-v2/gpt-4o-mini--gpt4_e05b82a6.json +1 -0
  133. forget_ai-0.2.0/research/act3/stage0.results.json +296 -0
  134. forget_ai-0.2.0/research/act3/stage0.summary.json +7 -0
  135. forget_ai-0.2.0/research/act3/stage0_cues.py +130 -0
  136. forget_ai-0.2.0/research/act3/stage0v2.results.json +1002 -0
  137. forget_ai-0.2.0/research/act3/stage0v2.summary.json +28 -0
  138. forget_ai-0.2.0/research/act3/stage0v2_cues.py +218 -0
  139. forget_ai-0.2.0/research/act3/stage0v3.results.json +3802 -0
  140. forget_ai-0.2.0/research/act3/stage0v3.summary.json +111 -0
  141. forget_ai-0.2.0/research/act3/stage0v3_sweep.py +223 -0
  142. forget_ai-0.2.0/research/act3/validation.md +128 -0
  143. forget_ai-0.2.0/research/alpha/counterfactual_pilot.py +152 -0
  144. forget_ai-0.2.0/research/alpha/pilot.results.json +1492 -0
  145. forget_ai-0.2.0/research/alpha/pilot.summary.json +8 -0
  146. forget_ai-0.2.0/research/beta/classify.py +105 -0
  147. forget_ai-0.2.0/research/beta/design.md +200 -0
  148. forget_ai-0.2.0/research/beta/paper/draft.md +343 -0
  149. forget_ai-0.2.0/research/beta/paper/method.md +192 -0
  150. forget_ai-0.2.0/research/beta/paper/review-response.md +13 -0
  151. forget_ai-0.2.0/research/beta/translate_organic.py +69 -0
  152. forget_ai-0.2.0/research/beta/w1_analyze.py +98 -0
  153. forget_ai-0.2.0/research/beta/w1_embed_cache.py +138 -0
  154. forget_ai-0.2.0/research/beta/w1_embed_gpu.py +61 -0
  155. forget_ai-0.2.0/research/beta/w1_results.jsonl +14100 -0
  156. forget_ai-0.2.0/research/beta/w1_similarity.py +105 -0
  157. forget_ai-0.2.0/research/beta/w1_sweep.py +218 -0
  158. forget_ai-0.2.0/research/beta/w2_bridge.jsonl +1560 -0
  159. forget_ai-0.2.0/research/beta/w2_bridge.py +194 -0
  160. forget_ai-0.2.0/research/beta/w2_dose.jsonl +1410 -0
  161. forget_ai-0.2.0/research/beta/w2_dose_dedup.py +152 -0
  162. forget_ai-0.2.0/research/beta/w2_orand_heldout.py +59 -0
  163. forget_ai-0.2.0/research/beta/w2_syspanel.jsonl +10 -0
  164. forget_ai-0.2.0/research/beta/w2_syspanel.py +157 -0
  165. forget_ai-0.2.0/research/e1_dirty_store/design.md +66 -0
  166. forget_ai-0.2.0/research/e1_dirty_store/run.py +206 -0
  167. forget_ai-0.2.0/research/ideas/canary-ownership-audit.md +125 -0
  168. forget_ai-0.2.0/research/ideas/observer-consolidation.md +200 -0
  169. forget_ai-0.2.0/research/longmemeval/compare_emergence.py +130 -0
  170. forget_ai-0.2.0/research/longmemeval/gen_local_obs.py +103 -0
  171. forget_ai-0.2.0/research/longmemeval/harness.py +339 -0
  172. forget_ai-0.2.0/research/longmemeval/observer.py +252 -0
  173. forget_ai-0.2.0/research/longmemeval/runs/abl-obs84-500.results.json +3502 -0
  174. forget_ai-0.2.0/research/longmemeval/runs/abl-obs84-500.summary.json +35 -0
  175. forget_ai-0.2.0/research/longmemeval/runs/abl-raw84-500.results.json +4502 -0
  176. forget_ai-0.2.0/research/longmemeval/runs/abl-raw84-500.summary.json +35 -0
  177. forget_ai-0.2.0/research/longmemeval/runs/abs-ids.json +1 -0
  178. forget_ai-0.2.0/research/longmemeval/runs/abs-v2-check.results.json +212 -0
  179. forget_ai-0.2.0/research/longmemeval/runs/abs-v2-check.summary.json +27 -0
  180. forget_ai-0.2.0/research/longmemeval/runs/baseline-s-42.results.json +380 -0
  181. forget_ai-0.2.0/research/longmemeval/runs/baseline-s-42.summary.json +35 -0
  182. forget_ai-0.2.0/research/longmemeval/runs/combined-heldout-42.results.json +380 -0
  183. forget_ai-0.2.0/research/longmemeval/runs/combined-heldout-42.summary.json +35 -0
  184. forget_ai-0.2.0/research/longmemeval/runs/dev-combined-rerankON.results.json +380 -0
  185. forget_ai-0.2.0/research/longmemeval/runs/dev-combined-rerankON.summary.json +35 -0
  186. forget_ai-0.2.0/research/longmemeval/runs/dev-dates-k20-clean.results.json +380 -0
  187. forget_ai-0.2.0/research/longmemeval/runs/dev-dates-k20-clean.summary.json +35 -0
  188. forget_ai-0.2.0/research/longmemeval/runs/dev-dates-k20.results.json +146 -0
  189. forget_ai-0.2.0/research/longmemeval/runs/dev-dates-k20.summary.json +35 -0
  190. forget_ai-0.2.0/research/longmemeval/runs/dev-rerankOFF-k42.results.json +380 -0
  191. forget_ai-0.2.0/research/longmemeval/runs/dev-rerankOFF-k42.summary.json +35 -0
  192. forget_ai-0.2.0/research/longmemeval/runs/dev-session-k10.results.json +380 -0
  193. forget_ai-0.2.0/research/longmemeval/runs/dev-session-k10.summary.json +35 -0
  194. forget_ai-0.2.0/research/longmemeval/runs/emergence-s-seed7-n3.summary.json +21 -0
  195. forget_ai-0.2.0/research/longmemeval/runs/emergence-s-seed7-n42.summary.json +33 -0
  196. forget_ai-0.2.0/research/longmemeval/runs/fastembed-s-42.results.json +380 -0
  197. forget_ai-0.2.0/research/longmemeval/runs/fastembed-s-42.summary.json +35 -0
  198. forget_ai-0.2.0/research/longmemeval/runs/final-dual84-500.results.json +2802 -0
  199. forget_ai-0.2.0/research/longmemeval/runs/final-dual84-500.summary.json +35 -0
  200. forget_ai-0.2.0/research/longmemeval/runs/final-dual84-FULL500.summary.json +32 -0
  201. forget_ai-0.2.0/research/longmemeval/runs/final-dual84-comp100.results.json +569 -0
  202. forget_ai-0.2.0/research/longmemeval/runs/final-dual84-comp100.summary.json +19 -0
  203. forget_ai-0.2.0/research/longmemeval/runs/final-dual84-last19.results.json +135 -0
  204. forget_ai-0.2.0/research/longmemeval/runs/final-dual84-last19.summary.json +19 -0
  205. forget_ai-0.2.0/research/longmemeval/runs/full-combined-500.results.json +4502 -0
  206. forget_ai-0.2.0/research/longmemeval/runs/full-combined-500.summary.json +35 -0
  207. forget_ai-0.2.0/research/longmemeval/runs/full-datefix-500.results.json +4502 -0
  208. forget_ai-0.2.0/research/longmemeval/runs/full-datefix-500.summary.json +35 -0
  209. forget_ai-0.2.0/research/longmemeval/runs/full-v3-500.results.json +3502 -0
  210. forget_ai-0.2.0/research/longmemeval/runs/full-v3-500.summary.json +35 -0
  211. forget_ai-0.2.0/research/longmemeval/runs/heldout-datefix-42.results.json +380 -0
  212. forget_ai-0.2.0/research/longmemeval/runs/heldout-datefix-42.summary.json +35 -0
  213. forget_ai-0.2.0/research/longmemeval/runs/heldout-s-42.results.json +380 -0
  214. forget_ai-0.2.0/research/longmemeval/runs/heldout-s-42.summary.json +35 -0
  215. forget_ai-0.2.0/research/longmemeval/runs/merged-481.results.json +1 -0
  216. forget_ai-0.2.0/research/longmemeval/runs/o1a-heldout-42.results.json +296 -0
  217. forget_ai-0.2.0/research/longmemeval/runs/o1a-heldout-42.summary.json +35 -0
  218. forget_ai-0.2.0/research/longmemeval/runs/o1a-smoke.results.json +23 -0
  219. forget_ai-0.2.0/research/longmemeval/runs/o1a-smoke.summary.json +23 -0
  220. forget_ai-0.2.0/research/longmemeval/runs/o1b-heldout-42.results.json +296 -0
  221. forget_ai-0.2.0/research/longmemeval/runs/o1b-heldout-42.summary.json +35 -0
  222. forget_ai-0.2.0/research/longmemeval/runs/o1c-hybrid-heldout-42.results.json +296 -0
  223. forget_ai-0.2.0/research/longmemeval/runs/o1c-hybrid-heldout-42.summary.json +35 -0
  224. forget_ai-0.2.0/research/longmemeval/runs/o1d-dual-heldout-42.results.json +296 -0
  225. forget_ai-0.2.0/research/longmemeval/runs/o1d-dual-heldout-42.summary.json +35 -0
  226. forget_ai-0.2.0/research/longmemeval/runs/o1e-dual84-heldout-42.results.json +296 -0
  227. forget_ai-0.2.0/research/longmemeval/runs/o1e-dual84-heldout-42.summary.json +35 -0
  228. forget_ai-0.2.0/research/longmemeval/runs/o2-qwen-full500.results.json +3502 -0
  229. forget_ai-0.2.0/research/longmemeval/runs/o2-qwen-full500.summary.json +35 -0
  230. forget_ai-0.2.0/research/longmemeval/runs/o2-qwen14b-heldout-42.results.json +296 -0
  231. forget_ai-0.2.0/research/longmemeval/runs/o2-qwen14b-heldout-42.summary.json +35 -0
  232. forget_ai-0.2.0/research/longmemeval/runs/o2-smoke-2.results.json +16 -0
  233. forget_ai-0.2.0/research/longmemeval/runs/o2-smoke-2.summary.json +19 -0
  234. forget_ai-0.2.0/research/longmemeval/runs/probe-ids.json +1 -0
  235. forget_ai-0.2.0/research/longmemeval/runs/probe-missing.json +1 -0
  236. forget_ai-0.2.0/research/longmemeval/runs/probe-v2.results.json +310 -0
  237. forget_ai-0.2.0/research/longmemeval/runs/probe-v2.summary.json +23 -0
  238. forget_ai-0.2.0/research/longmemeval/runs/smoke-oracle-6.results.json +56 -0
  239. forget_ai-0.2.0/research/longmemeval/runs/smoke-oracle-6.summary.json +35 -0
  240. forget_ai-0.2.0/research/longmemeval/runs/v3-check-ids.json +1 -0
  241. forget_ai-0.2.0/research/longmemeval/runs/v3-check.results.json +331 -0
  242. forget_ai-0.2.0/research/longmemeval/runs/v3-check.summary.json +31 -0
  243. forget_ai-0.2.0/research/paper/field-map.md +114 -0
  244. forget_ai-0.2.0/research/paper/outline.md +62 -0
  245. forget_ai-0.2.0/scripts/demo-decisions.sh +43 -0
  246. forget_ai-0.2.0/scripts/rehearse-funnel.sh +116 -0
  247. forget_ai-0.2.0/scripts/scrub_check.sh +28 -0
  248. forget_ai-0.2.0/site/.gitignore +1 -0
  249. forget_ai-0.2.0/site/.vercel/README.txt +11 -0
  250. forget_ai-0.2.0/site/.vercel/project.json +1 -0
  251. forget_ai-0.2.0/site/deck.html +415 -0
  252. forget_ai-0.2.0/site/index.html +641 -0
  253. forget_ai-0.2.0/site/llms.txt +60 -0
  254. forget_ai-0.2.0/site/og.png +0 -0
  255. forget_ai-0.2.0/site/robots.txt +4 -0
  256. forget_ai-0.2.0/site/sitemap.xml +8 -0
  257. forget_ai-0.2.0/skills/goal/SKILL.md +45 -0
  258. forget_ai-0.2.0/tests/conftest.py +138 -0
  259. forget_ai-0.2.0/tests/test_consolidation.py +130 -0
  260. forget_ai-0.2.0/tests/test_crypto.py +124 -0
  261. forget_ai-0.2.0/tests/test_e5_prefix.py +28 -0
  262. forget_ai-0.2.0/tests/test_embedding_codec.py +35 -0
  263. forget_ai-0.2.0/tests/test_filter_contract.py +251 -0
  264. forget_ai-0.2.0/tests/test_git_importer.py +128 -0
  265. forget_ai-0.2.0/tests/test_hooks.py +183 -0
  266. forget_ai-0.2.0/tests/test_korean_search.py +129 -0
  267. forget_ai-0.2.0/tests/test_mcp_scoped_filters.py +106 -0
  268. forget_ai-0.2.0/tests/test_mcp_scoped_route.py +58 -0
  269. forget_ai-0.2.0/tests/test_observation_gate.py +90 -0
  270. forget_ai-0.2.0/tests/test_open_loop_postit.py +185 -0
  271. forget_ai-0.2.0/tests/test_rerank_without_numpy.py +79 -0
  272. forget_ai-0.2.0/tests/test_scope_fallback_search.py +82 -0
  273. forget_ai-0.2.0/tests/test_search_prefilter.py +61 -0
  274. forget_ai-0.2.0/tests/test_server_cli.py +16 -0
  275. forget_ai-0.2.0/tests/test_supersede.py +100 -0
  276. forget_ai-0.2.0/tests/test_temporal_rerank.py +141 -0
  277. forget_ai-0.2.0/tests/test_trust_labels.py +170 -0
  278. forget_ai-0.2.0/tmp/pdf/forget-overedge-deck.pdf +0 -0
  279. forget_ai-0.2.0/tmp/pdf/forget-overedge-script.pdf +0 -0
  280. forget_ai-0.2.0/tmp/pdf/forget-prd-v2-business.pdf +0 -0
  281. forget_ai-0.2.0/tmp/vercel_add_www.json +1 -0
  282. forget_ai-0.2.0/tmp/vercel_issue_cert.json +1 -0
  283. forget_ai-0.2.0/tmp/vercel_project_site.json +1 -0
  284. forget_ai-0.2.0/tmp/vercel_site_domains.json +1 -0
@@ -0,0 +1,22 @@
1
+ __pycache__/
2
+ *.py[cod]
3
+ *.egg-info/
4
+ dist/
5
+ .venv*/
6
+ *.sqlite3
7
+ *.db
8
+ .env
9
+ .env.*
10
+ !.env.example
11
+ .DS_Store
12
+
13
+ # private GTM material — never ship with the public repo
14
+ gtm/
15
+
16
+ # β raw corpus — private data, only anonymized derivatives may be committed
17
+ research/beta/corpus/
18
+ research/beta/cache/
19
+ research/beta/cache-minilm/
20
+ research/longmemeval-data/
21
+ packages/forget-connect/*.tgz
22
+ research/longmemeval/observations/
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,86 @@
1
+ # I don't want to share my prompts
2
+
3
+ You tell your AI things you don't tell your colleagues. Half-formed ideas.
4
+ Salary numbers. The real reason the project slipped. What you're afraid of.
5
+ That was always true of prompts — and prompts, at least, were transient.
6
+
7
+ Memory changed the deal. Every AI product now ships a memory feature, and a
8
+ memory is not a prompt: it is a curated, compounding profile of you —
9
+ your decisions, your preferences, your patterns — stored durably on
10
+ someone else's server, readable by whoever operates it.
11
+
12
+ Three facts about that arrangement:
13
+
14
+ **1. It is not privileged.** In February 2026, a US federal court ruled that
15
+ a defendant's conversations with an AI assistant were not protected by
16
+ attorney-client privilege or work product — because the provider's terms of
17
+ service said user data could be used for training and disclosed to third
18
+ parties. What you tell an AI is, legally, what you told a company.
19
+
20
+ **2. Your memory vendor will change hands.** Rewind promised local-first
21
+ privacy, pivoted to the cloud, and was acquired — its remaining users were
22
+ migrated onto the acquirer's terms of service overnight. Every startup
23
+ holding your memories is one term sheet away from being someone else's
24
+ database.
25
+
26
+ **3. The platforms will not fix this.** A model provider cannot end-to-end
27
+ encrypt memory its own servers must read, and it will never port your
28
+ memory to a competitor's tool. Native memory features are silos by design.
29
+
30
+ Your model provider already reads your prompts. There is no reason your
31
+ memory layer should be a second reader.
32
+
33
+ ## What we're building
34
+
35
+ Forget is an open-source memory engine that runs on your machine. The
36
+ extraction, the search, the consolidation — all of it happens locally, in a
37
+ single SQLite file you own. That part exists today.
38
+
39
+ What's coming next is sync that cannot betray you:
40
+
41
+ - **End-to-end encrypted.** Memories are encrypted on your device before
42
+ they touch our servers. We store ciphertext and nothing else. We cannot
43
+ read your memories. Neither can whoever acquires us. Neither can a
44
+ subpoena.
45
+ - **Encrypted all the way down.** Embeddings are encrypted too. A vector is
46
+ a paraphrase of your text — services that encrypt the words and upload
47
+ the vectors in plaintext are selling you a lock with no door.
48
+ - **Layered by design.** Memories live in scopes — personal, work, per
49
+ project — each under its own key. A coding session can be granted your
50
+ work layer and nothing else. Access control enforced by mathematics, not
51
+ by a policy table.
52
+ - **Portable.** Forget speaks MCP, so the same memory follows you across
53
+ Claude Code, Cursor, and whatever you adopt next. Your memory belongs to
54
+ you, not to the tool that happened to collect it.
55
+ - **No passwords.** Devices hold keys; new devices are approved by ones you
56
+ already trust; a recovery code is your fallback. Nothing a server breach
57
+ can spend.
58
+
59
+ ## What we won't pretend
60
+
61
+ Honesty is the product, so here are the boundaries:
62
+
63
+ - The model you use still sees plaintext — it has to, to use your memories.
64
+ Encryption protects you from storage providers (including us), not from
65
+ the AI you deliberately hand a memory to. You choose who reads; that's
66
+ the whole point.
67
+ - If extraction runs through a cloud LLM you configure, that provider sees
68
+ what it processes. We default to local, and we label the trade-off
69
+ instead of hiding it.
70
+ - If you lose your devices and your recovery code, your memories are gone.
71
+ We can't reset what we can't read. That is the price of the guarantee,
72
+ and we won't blur it.
73
+
74
+ ## The name
75
+
76
+ Good memory is not storing everything — it is forgetting well. We built an
77
+ engine that forgets junk and keeps what matters. Now we're extending the
78
+ same principle to trust: **the safest secret-keeper is one with nothing to
79
+ tell.** We can't remember what you tell us. That's the feature.
80
+
81
+ ---
82
+
83
+ **Today:** run the engine locally — it's open source, and it works now.
84
+ **Next:** end-to-end encrypted sync. Join the waitlist.
85
+ **Building AI for therapy, law, or health?** Your users' memories are your
86
+ liability. We'd like to talk — we're taking design partners.