depthfusion 2.0.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 (275) hide show
  1. depthfusion-2.0.0/LICENSE +21 -0
  2. depthfusion-2.0.0/PKG-INFO +80 -0
  3. depthfusion-2.0.0/README.md +886 -0
  4. depthfusion-2.0.0/pyproject.toml +185 -0
  5. depthfusion-2.0.0/setup.cfg +4 -0
  6. depthfusion-2.0.0/src/depthfusion/__init__.py +0 -0
  7. depthfusion-2.0.0/src/depthfusion/analytics/__init__.py +15 -0
  8. depthfusion-2.0.0/src/depthfusion/analytics/aggregation.py +336 -0
  9. depthfusion-2.0.0/src/depthfusion/analytics/budget.py +358 -0
  10. depthfusion-2.0.0/src/depthfusion/analytics/collector.py +160 -0
  11. depthfusion-2.0.0/src/depthfusion/analytics/model_stats.py +352 -0
  12. depthfusion-2.0.0/src/depthfusion/analytics/recommender.py +294 -0
  13. depthfusion-2.0.0/src/depthfusion/analytics/router.py +342 -0
  14. depthfusion-2.0.0/src/depthfusion/analytics/store.py +73 -0
  15. depthfusion-2.0.0/src/depthfusion/analyzer/__init__.py +0 -0
  16. depthfusion-2.0.0/src/depthfusion/analyzer/compatibility.py +348 -0
  17. depthfusion-2.0.0/src/depthfusion/analyzer/installer.py +179 -0
  18. depthfusion-2.0.0/src/depthfusion/analyzer/recommender.py +35 -0
  19. depthfusion-2.0.0/src/depthfusion/analyzer/scanner.py +127 -0
  20. depthfusion-2.0.0/src/depthfusion/api/__init__.py +0 -0
  21. depthfusion-2.0.0/src/depthfusion/api/admin_console.py +795 -0
  22. depthfusion-2.0.0/src/depthfusion/api/auth.py +164 -0
  23. depthfusion-2.0.0/src/depthfusion/api/events.py +313 -0
  24. depthfusion-2.0.0/src/depthfusion/api/query.py +417 -0
  25. depthfusion-2.0.0/src/depthfusion/api/rest.py +1028 -0
  26. depthfusion-2.0.0/src/depthfusion/api/role_admin.py +254 -0
  27. depthfusion-2.0.0/src/depthfusion/audit/__init__.py +16 -0
  28. depthfusion-2.0.0/src/depthfusion/audit/log.py +353 -0
  29. depthfusion-2.0.0/src/depthfusion/authz/__init__.py +52 -0
  30. depthfusion-2.0.0/src/depthfusion/authz/capability_check.py +191 -0
  31. depthfusion-2.0.0/src/depthfusion/authz/classification.py +201 -0
  32. depthfusion-2.0.0/src/depthfusion/authz/export_audit.py +525 -0
  33. depthfusion-2.0.0/src/depthfusion/authz/export_controls.py +217 -0
  34. depthfusion-2.0.0/src/depthfusion/authz/frontmatter.py +177 -0
  35. depthfusion-2.0.0/src/depthfusion/authz/label_mapping.py +263 -0
  36. depthfusion-2.0.0/src/depthfusion/authz/policy_engine.py +605 -0
  37. depthfusion-2.0.0/src/depthfusion/authz/policy_snapshot.py +340 -0
  38. depthfusion-2.0.0/src/depthfusion/authz/roles.py +327 -0
  39. depthfusion-2.0.0/src/depthfusion/backends/__init__.py +29 -0
  40. depthfusion-2.0.0/src/depthfusion/backends/base.py +139 -0
  41. depthfusion-2.0.0/src/depthfusion/backends/chain.py +266 -0
  42. depthfusion-2.0.0/src/depthfusion/backends/factory.py +267 -0
  43. depthfusion-2.0.0/src/depthfusion/backends/gemma.py +302 -0
  44. depthfusion-2.0.0/src/depthfusion/backends/haiku.py +297 -0
  45. depthfusion-2.0.0/src/depthfusion/backends/local_embedding.py +202 -0
  46. depthfusion-2.0.0/src/depthfusion/backends/null.py +65 -0
  47. depthfusion-2.0.0/src/depthfusion/backends/openrouter.py +132 -0
  48. depthfusion-2.0.0/src/depthfusion/cache/__init__.py +110 -0
  49. depthfusion-2.0.0/src/depthfusion/cache/activity_signals.py +322 -0
  50. depthfusion-2.0.0/src/depthfusion/cache/admission.py +278 -0
  51. depthfusion-2.0.0/src/depthfusion/cache/hit_rate.py +288 -0
  52. depthfusion-2.0.0/src/depthfusion/cache/lease_lifecycle.py +888 -0
  53. depthfusion-2.0.0/src/depthfusion/cache/manager.py +371 -0
  54. depthfusion-2.0.0/src/depthfusion/cache/models.py +102 -0
  55. depthfusion-2.0.0/src/depthfusion/cache/prefetch_scheduler.py +254 -0
  56. depthfusion-2.0.0/src/depthfusion/capture/__init__.py +0 -0
  57. depthfusion-2.0.0/src/depthfusion/capture/_metrics.py +66 -0
  58. depthfusion-2.0.0/src/depthfusion/capture/auto_learn.py +515 -0
  59. depthfusion-2.0.0/src/depthfusion/capture/compressor.py +141 -0
  60. depthfusion-2.0.0/src/depthfusion/capture/decay.py +266 -0
  61. depthfusion-2.0.0/src/depthfusion/capture/decision_extractor.py +394 -0
  62. depthfusion-2.0.0/src/depthfusion/capture/dedup.py +404 -0
  63. depthfusion-2.0.0/src/depthfusion/capture/event_hook.py +62 -0
  64. depthfusion-2.0.0/src/depthfusion/capture/negative_extractor.py +369 -0
  65. depthfusion-2.0.0/src/depthfusion/capture/pruner.py +344 -0
  66. depthfusion-2.0.0/src/depthfusion/cli/__init__.py +1 -0
  67. depthfusion-2.0.0/src/depthfusion/cli/devices.py +143 -0
  68. depthfusion-2.0.0/src/depthfusion/cli/migrate.py +438 -0
  69. depthfusion-2.0.0/src/depthfusion/cli/roles.py +303 -0
  70. depthfusion-2.0.0/src/depthfusion/cognitive/__init__.py +0 -0
  71. depthfusion-2.0.0/src/depthfusion/cognitive/consolidator.py +60 -0
  72. depthfusion-2.0.0/src/depthfusion/cognitive/contradiction.py +95 -0
  73. depthfusion-2.0.0/src/depthfusion/cognitive/scorer.py +56 -0
  74. depthfusion-2.0.0/src/depthfusion/connectors/__init__.py +19 -0
  75. depthfusion-2.0.0/src/depthfusion/connectors/sharepoint.py +756 -0
  76. depthfusion-2.0.0/src/depthfusion/connectors/sharepoint_scheduler.py +149 -0
  77. depthfusion-2.0.0/src/depthfusion/connectors/sharepoint_scope.py +186 -0
  78. depthfusion-2.0.0/src/depthfusion/connectors/sharepoint_state.py +128 -0
  79. depthfusion-2.0.0/src/depthfusion/core/__init__.py +0 -0
  80. depthfusion-2.0.0/src/depthfusion/core/config.py +256 -0
  81. depthfusion-2.0.0/src/depthfusion/core/event_store.py +658 -0
  82. depthfusion-2.0.0/src/depthfusion/core/feedback.py +317 -0
  83. depthfusion-2.0.0/src/depthfusion/core/file_locking.py +266 -0
  84. depthfusion-2.0.0/src/depthfusion/core/hit_tracker.py +123 -0
  85. depthfusion-2.0.0/src/depthfusion/core/memory.py +59 -0
  86. depthfusion-2.0.0/src/depthfusion/core/memory_object.py +187 -0
  87. depthfusion-2.0.0/src/depthfusion/core/project_context.py +122 -0
  88. depthfusion-2.0.0/src/depthfusion/core/project_ingest.py +204 -0
  89. depthfusion-2.0.0/src/depthfusion/core/project_registry.py +59 -0
  90. depthfusion-2.0.0/src/depthfusion/core/research.py +181 -0
  91. depthfusion-2.0.0/src/depthfusion/core/scoring.py +82 -0
  92. depthfusion-2.0.0/src/depthfusion/core/types.py +216 -0
  93. depthfusion-2.0.0/src/depthfusion/fusion/__init__.py +0 -0
  94. depthfusion-2.0.0/src/depthfusion/fusion/block_retrieval.py +192 -0
  95. depthfusion-2.0.0/src/depthfusion/fusion/chunk_state_compression.py +190 -0
  96. depthfusion-2.0.0/src/depthfusion/fusion/gates.py +460 -0
  97. depthfusion-2.0.0/src/depthfusion/fusion/materialisation_policy.py +210 -0
  98. depthfusion-2.0.0/src/depthfusion/fusion/reranker.py +68 -0
  99. depthfusion-2.0.0/src/depthfusion/fusion/rrf.py +47 -0
  100. depthfusion-2.0.0/src/depthfusion/fusion/selective_fusion_weighter.py +316 -0
  101. depthfusion-2.0.0/src/depthfusion/fusion/weighted.py +118 -0
  102. depthfusion-2.0.0/src/depthfusion/graph/__init__.py +1 -0
  103. depthfusion-2.0.0/src/depthfusion/graph/builder.py +102 -0
  104. depthfusion-2.0.0/src/depthfusion/graph/dedup.py +165 -0
  105. depthfusion-2.0.0/src/depthfusion/graph/extractor.py +234 -0
  106. depthfusion-2.0.0/src/depthfusion/graph/linker.py +339 -0
  107. depthfusion-2.0.0/src/depthfusion/graph/scope.py +43 -0
  108. depthfusion-2.0.0/src/depthfusion/graph/store.py +610 -0
  109. depthfusion-2.0.0/src/depthfusion/graph/traverser.py +196 -0
  110. depthfusion-2.0.0/src/depthfusion/graph/types.py +91 -0
  111. depthfusion-2.0.0/src/depthfusion/hooks/__init__.py +0 -0
  112. depthfusion-2.0.0/src/depthfusion/hooks/git_post_commit.py +249 -0
  113. depthfusion-2.0.0/src/depthfusion/hooks/post_tool_use.py +296 -0
  114. depthfusion-2.0.0/src/depthfusion/hooks/session_start.py +162 -0
  115. depthfusion-2.0.0/src/depthfusion/identity/__init__.py +59 -0
  116. depthfusion-2.0.0/src/depthfusion/identity/device_keychain.py +451 -0
  117. depthfusion-2.0.0/src/depthfusion/identity/device_lease.py +222 -0
  118. depthfusion-2.0.0/src/depthfusion/identity/device_registry.py +239 -0
  119. depthfusion-2.0.0/src/depthfusion/identity/errors.py +55 -0
  120. depthfusion-2.0.0/src/depthfusion/identity/fastapi_deps.py +117 -0
  121. depthfusion-2.0.0/src/depthfusion/identity/jwks_cache.py +159 -0
  122. depthfusion-2.0.0/src/depthfusion/identity/legacy_shim.py +204 -0
  123. depthfusion-2.0.0/src/depthfusion/identity/models.py +81 -0
  124. depthfusion-2.0.0/src/depthfusion/identity/oidc_client.py +483 -0
  125. depthfusion-2.0.0/src/depthfusion/identity/principal_store.py +156 -0
  126. depthfusion-2.0.0/src/depthfusion/identity/service_account.py +204 -0
  127. depthfusion-2.0.0/src/depthfusion/identity/token_validator.py +232 -0
  128. depthfusion-2.0.0/src/depthfusion/ingest/__init__.py +33 -0
  129. depthfusion-2.0.0/src/depthfusion/ingest/chunking.py +149 -0
  130. depthfusion-2.0.0/src/depthfusion/ingest/models.py +46 -0
  131. depthfusion-2.0.0/src/depthfusion/ingest/parser.py +294 -0
  132. depthfusion-2.0.0/src/depthfusion/ingest/pipeline.py +256 -0
  133. depthfusion-2.0.0/src/depthfusion/install/__init__.py +0 -0
  134. depthfusion-2.0.0/src/depthfusion/install/dep_checker.py +111 -0
  135. depthfusion-2.0.0/src/depthfusion/install/gpu_probe.py +238 -0
  136. depthfusion-2.0.0/src/depthfusion/install/install.py +1153 -0
  137. depthfusion-2.0.0/src/depthfusion/install/migrate.py +68 -0
  138. depthfusion-2.0.0/src/depthfusion/install/smoke.py +248 -0
  139. depthfusion-2.0.0/src/depthfusion/install/ui_server.py +399 -0
  140. depthfusion-2.0.0/src/depthfusion/mcp/__init__.py +0 -0
  141. depthfusion-2.0.0/src/depthfusion/mcp/authz.py +195 -0
  142. depthfusion-2.0.0/src/depthfusion/mcp/cognitive_tools.py +79 -0
  143. depthfusion-2.0.0/src/depthfusion/mcp/http_server.py +257 -0
  144. depthfusion-2.0.0/src/depthfusion/mcp/server.py +418 -0
  145. depthfusion-2.0.0/src/depthfusion/mcp/skillforge_client.py +86 -0
  146. depthfusion-2.0.0/src/depthfusion/mcp/tools/__init__.py +23 -0
  147. depthfusion-2.0.0/src/depthfusion/mcp/tools/_registry.py +603 -0
  148. depthfusion-2.0.0/src/depthfusion/mcp/tools/_shared.py +718 -0
  149. depthfusion-2.0.0/src/depthfusion/mcp/tools/_state.py +139 -0
  150. depthfusion-2.0.0/src/depthfusion/mcp/tools/analytics_tools.py +9 -0
  151. depthfusion-2.0.0/src/depthfusion/mcp/tools/bridge.py +90 -0
  152. depthfusion-2.0.0/src/depthfusion/mcp/tools/capture.py +364 -0
  153. depthfusion-2.0.0/src/depthfusion/mcp/tools/decisions.py +206 -0
  154. depthfusion-2.0.0/src/depthfusion/mcp/tools/graph.py +509 -0
  155. depthfusion-2.0.0/src/depthfusion/mcp/tools/model_stats_tool.py +24 -0
  156. depthfusion-2.0.0/src/depthfusion/mcp/tools/project.py +250 -0
  157. depthfusion-2.0.0/src/depthfusion/mcp/tools/recall.py +219 -0
  158. depthfusion-2.0.0/src/depthfusion/mcp/tools/recommender_tools.py +60 -0
  159. depthfusion-2.0.0/src/depthfusion/mcp/tools/system.py +85 -0
  160. depthfusion-2.0.0/src/depthfusion/mcp/tools/telemetry.py +341 -0
  161. depthfusion-2.0.0/src/depthfusion/mcp/tools/telemetry_tools.py +43 -0
  162. depthfusion-2.0.0/src/depthfusion/metrics/__init__.py +0 -0
  163. depthfusion-2.0.0/src/depthfusion/metrics/aggregator.py +341 -0
  164. depthfusion-2.0.0/src/depthfusion/metrics/collector.py +522 -0
  165. depthfusion-2.0.0/src/depthfusion/migrations/__init__.py +11 -0
  166. depthfusion-2.0.0/src/depthfusion/parsers/__init__.py +69 -0
  167. depthfusion-2.0.0/src/depthfusion/parsers/base.py +49 -0
  168. depthfusion-2.0.0/src/depthfusion/parsers/chatgpt.py +107 -0
  169. depthfusion-2.0.0/src/depthfusion/parsers/deepseek.py +103 -0
  170. depthfusion-2.0.0/src/depthfusion/parsers/documents/__init__.py +107 -0
  171. depthfusion-2.0.0/src/depthfusion/parsers/documents/base.py +354 -0
  172. depthfusion-2.0.0/src/depthfusion/parsers/documents/docx.py +122 -0
  173. depthfusion-2.0.0/src/depthfusion/parsers/documents/generic.py +173 -0
  174. depthfusion-2.0.0/src/depthfusion/parsers/documents/ocr.py +191 -0
  175. depthfusion-2.0.0/src/depthfusion/parsers/documents/pdf.py +113 -0
  176. depthfusion-2.0.0/src/depthfusion/parsers/documents/pptx.py +103 -0
  177. depthfusion-2.0.0/src/depthfusion/parsers/documents/xlsx.py +150 -0
  178. depthfusion-2.0.0/src/depthfusion/parsers/gemini.py +82 -0
  179. depthfusion-2.0.0/src/depthfusion/parsers/generic.py +138 -0
  180. depthfusion-2.0.0/src/depthfusion/recursive/__init__.py +0 -0
  181. depthfusion-2.0.0/src/depthfusion/recursive/client.py +346 -0
  182. depthfusion-2.0.0/src/depthfusion/recursive/sandbox.py +78 -0
  183. depthfusion-2.0.0/src/depthfusion/recursive/sidecar.py +79 -0
  184. depthfusion-2.0.0/src/depthfusion/recursive/strategies.py +45 -0
  185. depthfusion-2.0.0/src/depthfusion/recursive/trajectory.py +40 -0
  186. depthfusion-2.0.0/src/depthfusion/retrieval/__init__.py +17 -0
  187. depthfusion-2.0.0/src/depthfusion/retrieval/acl_verifier.py +204 -0
  188. depthfusion-2.0.0/src/depthfusion/retrieval/bm25.py +130 -0
  189. depthfusion-2.0.0/src/depthfusion/retrieval/hnsw_store.py +509 -0
  190. depthfusion-2.0.0/src/depthfusion/retrieval/hybrid.py +942 -0
  191. depthfusion-2.0.0/src/depthfusion/retrieval/reranker.py +99 -0
  192. depthfusion-2.0.0/src/depthfusion/router/__init__.py +0 -0
  193. depthfusion-2.0.0/src/depthfusion/router/bus.py +302 -0
  194. depthfusion-2.0.0/src/depthfusion/router/cost_estimator.py +83 -0
  195. depthfusion-2.0.0/src/depthfusion/router/dispatcher.py +49 -0
  196. depthfusion-2.0.0/src/depthfusion/router/publisher.py +35 -0
  197. depthfusion-2.0.0/src/depthfusion/router/subscriber.py +17 -0
  198. depthfusion-2.0.0/src/depthfusion/session/__init__.py +0 -0
  199. depthfusion-2.0.0/src/depthfusion/session/compactor.py +91 -0
  200. depthfusion-2.0.0/src/depthfusion/session/loader.py +84 -0
  201. depthfusion-2.0.0/src/depthfusion/session/scorer.py +69 -0
  202. depthfusion-2.0.0/src/depthfusion/session/tagger.py +169 -0
  203. depthfusion-2.0.0/src/depthfusion/storage/__init__.py +3 -0
  204. depthfusion-2.0.0/src/depthfusion/storage/event_log.py +92 -0
  205. depthfusion-2.0.0/src/depthfusion/storage/file_index.py +318 -0
  206. depthfusion-2.0.0/src/depthfusion/storage/memory_store.py +306 -0
  207. depthfusion-2.0.0/src/depthfusion/storage/telemetry_store.py +336 -0
  208. depthfusion-2.0.0/src/depthfusion/storage/tier_manager.py +66 -0
  209. depthfusion-2.0.0/src/depthfusion/storage/vector_store.py +238 -0
  210. depthfusion-2.0.0/src/depthfusion/sync/__init__.py +4 -0
  211. depthfusion-2.0.0/src/depthfusion/sync/engine.py +497 -0
  212. depthfusion-2.0.0/src/depthfusion/sync/router.py +177 -0
  213. depthfusion-2.0.0/src/depthfusion/telemetry/__init__.py +2 -0
  214. depthfusion-2.0.0/src/depthfusion/telemetry/recorder.py +142 -0
  215. depthfusion-2.0.0/src/depthfusion/telemetry/schema.py +65 -0
  216. depthfusion-2.0.0/src/depthfusion/utils/__init__.py +0 -0
  217. depthfusion-2.0.0/src/depthfusion/utils/expression_eval.py +257 -0
  218. depthfusion-2.0.0/src/depthfusion/utils/mode.py +31 -0
  219. depthfusion-2.0.0/src/depthfusion.egg-info/PKG-INFO +80 -0
  220. depthfusion-2.0.0/src/depthfusion.egg-info/SOURCES.txt +273 -0
  221. depthfusion-2.0.0/src/depthfusion.egg-info/dependency_links.txt +1 -0
  222. depthfusion-2.0.0/src/depthfusion.egg-info/entry_points.txt +2 -0
  223. depthfusion-2.0.0/src/depthfusion.egg-info/requires.txt +83 -0
  224. depthfusion-2.0.0/src/depthfusion.egg-info/top_level.txt +1 -0
  225. depthfusion-2.0.0/tests/test_acl_frontmatter.py +198 -0
  226. depthfusion-2.0.0/tests/test_acl_property.py +321 -0
  227. depthfusion-2.0.0/tests/test_acl_retrieval.py +591 -0
  228. depthfusion-2.0.0/tests/test_acl_verifier.py +203 -0
  229. depthfusion-2.0.0/tests/test_acl_write_enforcement.py +228 -0
  230. depthfusion-2.0.0/tests/test_admin_console_policy.py +291 -0
  231. depthfusion-2.0.0/tests/test_admin_retention.py +284 -0
  232. depthfusion-2.0.0/tests/test_aggregate_leak.py +311 -0
  233. depthfusion-2.0.0/tests/test_analytics.py +451 -0
  234. depthfusion-2.0.0/tests/test_atomic_replace.py +407 -0
  235. depthfusion-2.0.0/tests/test_audit.py +568 -0
  236. depthfusion-2.0.0/tests/test_budget.py +433 -0
  237. depthfusion-2.0.0/tests/test_budget_e2e.py +285 -0
  238. depthfusion-2.0.0/tests/test_cache.py +951 -0
  239. depthfusion-2.0.0/tests/test_cache_activity_prefetch.py +574 -0
  240. depthfusion-2.0.0/tests/test_capability_check.py +384 -0
  241. depthfusion-2.0.0/tests/test_classification.py +485 -0
  242. depthfusion-2.0.0/tests/test_cli_migrate.py +209 -0
  243. depthfusion-2.0.0/tests/test_device_keychain.py +405 -0
  244. depthfusion-2.0.0/tests/test_device_lease.py +310 -0
  245. depthfusion-2.0.0/tests/test_device_login.py +217 -0
  246. depthfusion-2.0.0/tests/test_device_registry.py +350 -0
  247. depthfusion-2.0.0/tests/test_document_parser_base.py +148 -0
  248. depthfusion-2.0.0/tests/test_document_parsers.py +467 -0
  249. depthfusion-2.0.0/tests/test_export_controls.py +234 -0
  250. depthfusion-2.0.0/tests/test_expression_eval.py +114 -0
  251. depthfusion-2.0.0/tests/test_fastapi_deps.py +144 -0
  252. depthfusion-2.0.0/tests/test_generic_parser.py +190 -0
  253. depthfusion-2.0.0/tests/test_identity_token_validator.py +451 -0
  254. depthfusion-2.0.0/tests/test_ingest.py +563 -0
  255. depthfusion-2.0.0/tests/test_legacy_shim.py +364 -0
  256. depthfusion-2.0.0/tests/test_mcp_authz.py +327 -0
  257. depthfusion-2.0.0/tests/test_migration_rehearsal.py +549 -0
  258. depthfusion-2.0.0/tests/test_model_stats.py +162 -0
  259. depthfusion-2.0.0/tests/test_ocr_parser.py +260 -0
  260. depthfusion-2.0.0/tests/test_parse_budget.py +175 -0
  261. depthfusion-2.0.0/tests/test_performance.py +198 -0
  262. depthfusion-2.0.0/tests/test_policy_engine.py +790 -0
  263. depthfusion-2.0.0/tests/test_principal_store.py +188 -0
  264. depthfusion-2.0.0/tests/test_role_admin.py +455 -0
  265. depthfusion-2.0.0/tests/test_role_matrix.py +225 -0
  266. depthfusion-2.0.0/tests/test_roles.py +377 -0
  267. depthfusion-2.0.0/tests/test_route_walker.py +173 -0
  268. depthfusion-2.0.0/tests/test_security_t684.py +430 -0
  269. depthfusion-2.0.0/tests/test_service_account.py +177 -0
  270. depthfusion-2.0.0/tests/test_sharepoint.py +492 -0
  271. depthfusion-2.0.0/tests/test_sharepoint_connector.py +160 -0
  272. depthfusion-2.0.0/tests/test_sharepoint_delta_e2e.py +475 -0
  273. depthfusion-2.0.0/tests/test_sync_engine.py +525 -0
  274. depthfusion-2.0.0/tests/test_telemetry.py +134 -0
  275. depthfusion-2.0.0/tests/test_token_validator_negative.py +264 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Greg Morris
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,80 @@
1
+ Metadata-Version: 2.4
2
+ Name: depthfusion
3
+ Version: 2.0.0
4
+ Summary: Depth-aware memory fusion for Claude Code — Cognitive Infrastructure Layer with event-sourced memory, typed memories, cognitive scoring, contradiction detection, and explainable retrieval
5
+ License-Expression: MIT
6
+ Requires-Python: >=3.11
7
+ License-File: LICENSE
8
+ Requires-Dist: numpy>=1.24
9
+ Requires-Dist: openpyxl>=3.1
10
+ Requires-Dist: python-pptx>=0.6
11
+ Requires-Dist: pyyaml>=6.0
12
+ Requires-Dist: structlog>=24.0
13
+ Provides-Extra: local
14
+ Provides-Extra: vps-cpu
15
+ Requires-Dist: anthropic>=0.40; extra == "vps-cpu"
16
+ Requires-Dist: chromadb>=1.0; extra == "vps-cpu"
17
+ Requires-Dist: fastapi>=0.100; extra == "vps-cpu"
18
+ Requires-Dist: uvicorn>=0.23; extra == "vps-cpu"
19
+ Requires-Dist: Mako>=1.3.12; extra == "vps-cpu"
20
+ Requires-Dist: PyJWT>=2.13.0; extra == "vps-cpu"
21
+ Requires-Dist: Pygments>=2.20.0; extra == "vps-cpu"
22
+ Requires-Dist: Markdown>=3.8.1; extra == "vps-cpu"
23
+ Requires-Dist: starlette>=1.3.1; extra == "vps-cpu"
24
+ Provides-Extra: vps-gpu
25
+ Requires-Dist: sentence-transformers>=2.2; extra == "vps-gpu"
26
+ Requires-Dist: chromadb>=1.0; extra == "vps-gpu"
27
+ Requires-Dist: fastapi>=0.100; extra == "vps-gpu"
28
+ Requires-Dist: uvicorn>=0.23; extra == "vps-gpu"
29
+ Requires-Dist: hnswlib>=0.7; extra == "vps-gpu"
30
+ Requires-Dist: Mako>=1.3.12; extra == "vps-gpu"
31
+ Requires-Dist: PyJWT>=2.13.0; extra == "vps-gpu"
32
+ Requires-Dist: Pygments>=2.20.0; extra == "vps-gpu"
33
+ Requires-Dist: Markdown>=3.8.1; extra == "vps-gpu"
34
+ Requires-Dist: starlette>=1.3.1; extra == "vps-gpu"
35
+ Provides-Extra: mac-mlx
36
+ Requires-Dist: mlx-lm>=0.18; extra == "mac-mlx"
37
+ Requires-Dist: sentence-transformers>=2.2; extra == "mac-mlx"
38
+ Requires-Dist: chromadb>=1.0; extra == "mac-mlx"
39
+ Requires-Dist: fastapi>=0.100; extra == "mac-mlx"
40
+ Requires-Dist: uvicorn>=0.23; extra == "mac-mlx"
41
+ Requires-Dist: hnswlib>=0.7; extra == "mac-mlx"
42
+ Requires-Dist: Mako>=1.3.12; extra == "mac-mlx"
43
+ Requires-Dist: PyJWT>=2.13.0; extra == "mac-mlx"
44
+ Requires-Dist: Pygments>=2.20.0; extra == "mac-mlx"
45
+ Requires-Dist: Markdown>=3.8.1; extra == "mac-mlx"
46
+ Requires-Dist: starlette>=1.3.1; extra == "mac-mlx"
47
+ Provides-Extra: hnsw
48
+ Requires-Dist: sentence-transformers>=2.2; extra == "hnsw"
49
+ Requires-Dist: hnswlib>=0.7; extra == "hnsw"
50
+ Provides-Extra: rlm
51
+ Requires-Dist: rlms; extra == "rlm"
52
+ Provides-Extra: ocr
53
+ Requires-Dist: pytesseract>=0.3; extra == "ocr"
54
+ Requires-Dist: Pillow>=10.0; extra == "ocr"
55
+ Requires-Dist: rapidocr_onnxruntime>=1.3; python_version >= "3.8" and extra == "ocr"
56
+ Provides-Extra: fabric
57
+ Requires-Dist: redis>=5.0; extra == "fabric"
58
+ Provides-Extra: dev
59
+ Requires-Dist: openpyxl>=3.1; extra == "dev"
60
+ Requires-Dist: python-pptx>=0.6; extra == "dev"
61
+ Requires-Dist: pytest>=8.0; extra == "dev"
62
+ Requires-Dist: pytest-asyncio>=0.23; extra == "dev"
63
+ Requires-Dist: pytest-cov>=5.0; extra == "dev"
64
+ Requires-Dist: pytest-timeout>=2.3; extra == "dev"
65
+ Requires-Dist: mypy>=1.0; extra == "dev"
66
+ Requires-Dist: ruff>=0.4; extra == "dev"
67
+ Requires-Dist: types-PyYAML>=6.0.0; extra == "dev"
68
+ Requires-Dist: anthropic>=0.40; extra == "dev"
69
+ Requires-Dist: fastapi>=0.100; extra == "dev"
70
+ Requires-Dist: httpx>=0.27; extra == "dev"
71
+ Requires-Dist: starlette>=1.3.1; extra == "dev"
72
+ Requires-Dist: chromadb<2.0,>=1.0; extra == "dev"
73
+ Requires-Dist: hnswlib>=0.7; extra == "dev"
74
+ Requires-Dist: pypdf>=3.0; extra == "dev"
75
+ Requires-Dist: pdfplumber>=0.11; extra == "dev"
76
+ Requires-Dist: pdfminer.six>=20221105; extra == "dev"
77
+ Requires-Dist: cryptography>=48.0.1; extra == "dev"
78
+ Requires-Dist: python-docx>=0.8; extra == "dev"
79
+ Requires-Dist: msal>=1.0; extra == "dev"
80
+ Dynamic: license-file