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.
- depthfusion-2.0.0/LICENSE +21 -0
- depthfusion-2.0.0/PKG-INFO +80 -0
- depthfusion-2.0.0/README.md +886 -0
- depthfusion-2.0.0/pyproject.toml +185 -0
- depthfusion-2.0.0/setup.cfg +4 -0
- depthfusion-2.0.0/src/depthfusion/__init__.py +0 -0
- depthfusion-2.0.0/src/depthfusion/analytics/__init__.py +15 -0
- depthfusion-2.0.0/src/depthfusion/analytics/aggregation.py +336 -0
- depthfusion-2.0.0/src/depthfusion/analytics/budget.py +358 -0
- depthfusion-2.0.0/src/depthfusion/analytics/collector.py +160 -0
- depthfusion-2.0.0/src/depthfusion/analytics/model_stats.py +352 -0
- depthfusion-2.0.0/src/depthfusion/analytics/recommender.py +294 -0
- depthfusion-2.0.0/src/depthfusion/analytics/router.py +342 -0
- depthfusion-2.0.0/src/depthfusion/analytics/store.py +73 -0
- depthfusion-2.0.0/src/depthfusion/analyzer/__init__.py +0 -0
- depthfusion-2.0.0/src/depthfusion/analyzer/compatibility.py +348 -0
- depthfusion-2.0.0/src/depthfusion/analyzer/installer.py +179 -0
- depthfusion-2.0.0/src/depthfusion/analyzer/recommender.py +35 -0
- depthfusion-2.0.0/src/depthfusion/analyzer/scanner.py +127 -0
- depthfusion-2.0.0/src/depthfusion/api/__init__.py +0 -0
- depthfusion-2.0.0/src/depthfusion/api/admin_console.py +795 -0
- depthfusion-2.0.0/src/depthfusion/api/auth.py +164 -0
- depthfusion-2.0.0/src/depthfusion/api/events.py +313 -0
- depthfusion-2.0.0/src/depthfusion/api/query.py +417 -0
- depthfusion-2.0.0/src/depthfusion/api/rest.py +1028 -0
- depthfusion-2.0.0/src/depthfusion/api/role_admin.py +254 -0
- depthfusion-2.0.0/src/depthfusion/audit/__init__.py +16 -0
- depthfusion-2.0.0/src/depthfusion/audit/log.py +353 -0
- depthfusion-2.0.0/src/depthfusion/authz/__init__.py +52 -0
- depthfusion-2.0.0/src/depthfusion/authz/capability_check.py +191 -0
- depthfusion-2.0.0/src/depthfusion/authz/classification.py +201 -0
- depthfusion-2.0.0/src/depthfusion/authz/export_audit.py +525 -0
- depthfusion-2.0.0/src/depthfusion/authz/export_controls.py +217 -0
- depthfusion-2.0.0/src/depthfusion/authz/frontmatter.py +177 -0
- depthfusion-2.0.0/src/depthfusion/authz/label_mapping.py +263 -0
- depthfusion-2.0.0/src/depthfusion/authz/policy_engine.py +605 -0
- depthfusion-2.0.0/src/depthfusion/authz/policy_snapshot.py +340 -0
- depthfusion-2.0.0/src/depthfusion/authz/roles.py +327 -0
- depthfusion-2.0.0/src/depthfusion/backends/__init__.py +29 -0
- depthfusion-2.0.0/src/depthfusion/backends/base.py +139 -0
- depthfusion-2.0.0/src/depthfusion/backends/chain.py +266 -0
- depthfusion-2.0.0/src/depthfusion/backends/factory.py +267 -0
- depthfusion-2.0.0/src/depthfusion/backends/gemma.py +302 -0
- depthfusion-2.0.0/src/depthfusion/backends/haiku.py +297 -0
- depthfusion-2.0.0/src/depthfusion/backends/local_embedding.py +202 -0
- depthfusion-2.0.0/src/depthfusion/backends/null.py +65 -0
- depthfusion-2.0.0/src/depthfusion/backends/openrouter.py +132 -0
- depthfusion-2.0.0/src/depthfusion/cache/__init__.py +110 -0
- depthfusion-2.0.0/src/depthfusion/cache/activity_signals.py +322 -0
- depthfusion-2.0.0/src/depthfusion/cache/admission.py +278 -0
- depthfusion-2.0.0/src/depthfusion/cache/hit_rate.py +288 -0
- depthfusion-2.0.0/src/depthfusion/cache/lease_lifecycle.py +888 -0
- depthfusion-2.0.0/src/depthfusion/cache/manager.py +371 -0
- depthfusion-2.0.0/src/depthfusion/cache/models.py +102 -0
- depthfusion-2.0.0/src/depthfusion/cache/prefetch_scheduler.py +254 -0
- depthfusion-2.0.0/src/depthfusion/capture/__init__.py +0 -0
- depthfusion-2.0.0/src/depthfusion/capture/_metrics.py +66 -0
- depthfusion-2.0.0/src/depthfusion/capture/auto_learn.py +515 -0
- depthfusion-2.0.0/src/depthfusion/capture/compressor.py +141 -0
- depthfusion-2.0.0/src/depthfusion/capture/decay.py +266 -0
- depthfusion-2.0.0/src/depthfusion/capture/decision_extractor.py +394 -0
- depthfusion-2.0.0/src/depthfusion/capture/dedup.py +404 -0
- depthfusion-2.0.0/src/depthfusion/capture/event_hook.py +62 -0
- depthfusion-2.0.0/src/depthfusion/capture/negative_extractor.py +369 -0
- depthfusion-2.0.0/src/depthfusion/capture/pruner.py +344 -0
- depthfusion-2.0.0/src/depthfusion/cli/__init__.py +1 -0
- depthfusion-2.0.0/src/depthfusion/cli/devices.py +143 -0
- depthfusion-2.0.0/src/depthfusion/cli/migrate.py +438 -0
- depthfusion-2.0.0/src/depthfusion/cli/roles.py +303 -0
- depthfusion-2.0.0/src/depthfusion/cognitive/__init__.py +0 -0
- depthfusion-2.0.0/src/depthfusion/cognitive/consolidator.py +60 -0
- depthfusion-2.0.0/src/depthfusion/cognitive/contradiction.py +95 -0
- depthfusion-2.0.0/src/depthfusion/cognitive/scorer.py +56 -0
- depthfusion-2.0.0/src/depthfusion/connectors/__init__.py +19 -0
- depthfusion-2.0.0/src/depthfusion/connectors/sharepoint.py +756 -0
- depthfusion-2.0.0/src/depthfusion/connectors/sharepoint_scheduler.py +149 -0
- depthfusion-2.0.0/src/depthfusion/connectors/sharepoint_scope.py +186 -0
- depthfusion-2.0.0/src/depthfusion/connectors/sharepoint_state.py +128 -0
- depthfusion-2.0.0/src/depthfusion/core/__init__.py +0 -0
- depthfusion-2.0.0/src/depthfusion/core/config.py +256 -0
- depthfusion-2.0.0/src/depthfusion/core/event_store.py +658 -0
- depthfusion-2.0.0/src/depthfusion/core/feedback.py +317 -0
- depthfusion-2.0.0/src/depthfusion/core/file_locking.py +266 -0
- depthfusion-2.0.0/src/depthfusion/core/hit_tracker.py +123 -0
- depthfusion-2.0.0/src/depthfusion/core/memory.py +59 -0
- depthfusion-2.0.0/src/depthfusion/core/memory_object.py +187 -0
- depthfusion-2.0.0/src/depthfusion/core/project_context.py +122 -0
- depthfusion-2.0.0/src/depthfusion/core/project_ingest.py +204 -0
- depthfusion-2.0.0/src/depthfusion/core/project_registry.py +59 -0
- depthfusion-2.0.0/src/depthfusion/core/research.py +181 -0
- depthfusion-2.0.0/src/depthfusion/core/scoring.py +82 -0
- depthfusion-2.0.0/src/depthfusion/core/types.py +216 -0
- depthfusion-2.0.0/src/depthfusion/fusion/__init__.py +0 -0
- depthfusion-2.0.0/src/depthfusion/fusion/block_retrieval.py +192 -0
- depthfusion-2.0.0/src/depthfusion/fusion/chunk_state_compression.py +190 -0
- depthfusion-2.0.0/src/depthfusion/fusion/gates.py +460 -0
- depthfusion-2.0.0/src/depthfusion/fusion/materialisation_policy.py +210 -0
- depthfusion-2.0.0/src/depthfusion/fusion/reranker.py +68 -0
- depthfusion-2.0.0/src/depthfusion/fusion/rrf.py +47 -0
- depthfusion-2.0.0/src/depthfusion/fusion/selective_fusion_weighter.py +316 -0
- depthfusion-2.0.0/src/depthfusion/fusion/weighted.py +118 -0
- depthfusion-2.0.0/src/depthfusion/graph/__init__.py +1 -0
- depthfusion-2.0.0/src/depthfusion/graph/builder.py +102 -0
- depthfusion-2.0.0/src/depthfusion/graph/dedup.py +165 -0
- depthfusion-2.0.0/src/depthfusion/graph/extractor.py +234 -0
- depthfusion-2.0.0/src/depthfusion/graph/linker.py +339 -0
- depthfusion-2.0.0/src/depthfusion/graph/scope.py +43 -0
- depthfusion-2.0.0/src/depthfusion/graph/store.py +610 -0
- depthfusion-2.0.0/src/depthfusion/graph/traverser.py +196 -0
- depthfusion-2.0.0/src/depthfusion/graph/types.py +91 -0
- depthfusion-2.0.0/src/depthfusion/hooks/__init__.py +0 -0
- depthfusion-2.0.0/src/depthfusion/hooks/git_post_commit.py +249 -0
- depthfusion-2.0.0/src/depthfusion/hooks/post_tool_use.py +296 -0
- depthfusion-2.0.0/src/depthfusion/hooks/session_start.py +162 -0
- depthfusion-2.0.0/src/depthfusion/identity/__init__.py +59 -0
- depthfusion-2.0.0/src/depthfusion/identity/device_keychain.py +451 -0
- depthfusion-2.0.0/src/depthfusion/identity/device_lease.py +222 -0
- depthfusion-2.0.0/src/depthfusion/identity/device_registry.py +239 -0
- depthfusion-2.0.0/src/depthfusion/identity/errors.py +55 -0
- depthfusion-2.0.0/src/depthfusion/identity/fastapi_deps.py +117 -0
- depthfusion-2.0.0/src/depthfusion/identity/jwks_cache.py +159 -0
- depthfusion-2.0.0/src/depthfusion/identity/legacy_shim.py +204 -0
- depthfusion-2.0.0/src/depthfusion/identity/models.py +81 -0
- depthfusion-2.0.0/src/depthfusion/identity/oidc_client.py +483 -0
- depthfusion-2.0.0/src/depthfusion/identity/principal_store.py +156 -0
- depthfusion-2.0.0/src/depthfusion/identity/service_account.py +204 -0
- depthfusion-2.0.0/src/depthfusion/identity/token_validator.py +232 -0
- depthfusion-2.0.0/src/depthfusion/ingest/__init__.py +33 -0
- depthfusion-2.0.0/src/depthfusion/ingest/chunking.py +149 -0
- depthfusion-2.0.0/src/depthfusion/ingest/models.py +46 -0
- depthfusion-2.0.0/src/depthfusion/ingest/parser.py +294 -0
- depthfusion-2.0.0/src/depthfusion/ingest/pipeline.py +256 -0
- depthfusion-2.0.0/src/depthfusion/install/__init__.py +0 -0
- depthfusion-2.0.0/src/depthfusion/install/dep_checker.py +111 -0
- depthfusion-2.0.0/src/depthfusion/install/gpu_probe.py +238 -0
- depthfusion-2.0.0/src/depthfusion/install/install.py +1153 -0
- depthfusion-2.0.0/src/depthfusion/install/migrate.py +68 -0
- depthfusion-2.0.0/src/depthfusion/install/smoke.py +248 -0
- depthfusion-2.0.0/src/depthfusion/install/ui_server.py +399 -0
- depthfusion-2.0.0/src/depthfusion/mcp/__init__.py +0 -0
- depthfusion-2.0.0/src/depthfusion/mcp/authz.py +195 -0
- depthfusion-2.0.0/src/depthfusion/mcp/cognitive_tools.py +79 -0
- depthfusion-2.0.0/src/depthfusion/mcp/http_server.py +257 -0
- depthfusion-2.0.0/src/depthfusion/mcp/server.py +418 -0
- depthfusion-2.0.0/src/depthfusion/mcp/skillforge_client.py +86 -0
- depthfusion-2.0.0/src/depthfusion/mcp/tools/__init__.py +23 -0
- depthfusion-2.0.0/src/depthfusion/mcp/tools/_registry.py +603 -0
- depthfusion-2.0.0/src/depthfusion/mcp/tools/_shared.py +718 -0
- depthfusion-2.0.0/src/depthfusion/mcp/tools/_state.py +139 -0
- depthfusion-2.0.0/src/depthfusion/mcp/tools/analytics_tools.py +9 -0
- depthfusion-2.0.0/src/depthfusion/mcp/tools/bridge.py +90 -0
- depthfusion-2.0.0/src/depthfusion/mcp/tools/capture.py +364 -0
- depthfusion-2.0.0/src/depthfusion/mcp/tools/decisions.py +206 -0
- depthfusion-2.0.0/src/depthfusion/mcp/tools/graph.py +509 -0
- depthfusion-2.0.0/src/depthfusion/mcp/tools/model_stats_tool.py +24 -0
- depthfusion-2.0.0/src/depthfusion/mcp/tools/project.py +250 -0
- depthfusion-2.0.0/src/depthfusion/mcp/tools/recall.py +219 -0
- depthfusion-2.0.0/src/depthfusion/mcp/tools/recommender_tools.py +60 -0
- depthfusion-2.0.0/src/depthfusion/mcp/tools/system.py +85 -0
- depthfusion-2.0.0/src/depthfusion/mcp/tools/telemetry.py +341 -0
- depthfusion-2.0.0/src/depthfusion/mcp/tools/telemetry_tools.py +43 -0
- depthfusion-2.0.0/src/depthfusion/metrics/__init__.py +0 -0
- depthfusion-2.0.0/src/depthfusion/metrics/aggregator.py +341 -0
- depthfusion-2.0.0/src/depthfusion/metrics/collector.py +522 -0
- depthfusion-2.0.0/src/depthfusion/migrations/__init__.py +11 -0
- depthfusion-2.0.0/src/depthfusion/parsers/__init__.py +69 -0
- depthfusion-2.0.0/src/depthfusion/parsers/base.py +49 -0
- depthfusion-2.0.0/src/depthfusion/parsers/chatgpt.py +107 -0
- depthfusion-2.0.0/src/depthfusion/parsers/deepseek.py +103 -0
- depthfusion-2.0.0/src/depthfusion/parsers/documents/__init__.py +107 -0
- depthfusion-2.0.0/src/depthfusion/parsers/documents/base.py +354 -0
- depthfusion-2.0.0/src/depthfusion/parsers/documents/docx.py +122 -0
- depthfusion-2.0.0/src/depthfusion/parsers/documents/generic.py +173 -0
- depthfusion-2.0.0/src/depthfusion/parsers/documents/ocr.py +191 -0
- depthfusion-2.0.0/src/depthfusion/parsers/documents/pdf.py +113 -0
- depthfusion-2.0.0/src/depthfusion/parsers/documents/pptx.py +103 -0
- depthfusion-2.0.0/src/depthfusion/parsers/documents/xlsx.py +150 -0
- depthfusion-2.0.0/src/depthfusion/parsers/gemini.py +82 -0
- depthfusion-2.0.0/src/depthfusion/parsers/generic.py +138 -0
- depthfusion-2.0.0/src/depthfusion/recursive/__init__.py +0 -0
- depthfusion-2.0.0/src/depthfusion/recursive/client.py +346 -0
- depthfusion-2.0.0/src/depthfusion/recursive/sandbox.py +78 -0
- depthfusion-2.0.0/src/depthfusion/recursive/sidecar.py +79 -0
- depthfusion-2.0.0/src/depthfusion/recursive/strategies.py +45 -0
- depthfusion-2.0.0/src/depthfusion/recursive/trajectory.py +40 -0
- depthfusion-2.0.0/src/depthfusion/retrieval/__init__.py +17 -0
- depthfusion-2.0.0/src/depthfusion/retrieval/acl_verifier.py +204 -0
- depthfusion-2.0.0/src/depthfusion/retrieval/bm25.py +130 -0
- depthfusion-2.0.0/src/depthfusion/retrieval/hnsw_store.py +509 -0
- depthfusion-2.0.0/src/depthfusion/retrieval/hybrid.py +942 -0
- depthfusion-2.0.0/src/depthfusion/retrieval/reranker.py +99 -0
- depthfusion-2.0.0/src/depthfusion/router/__init__.py +0 -0
- depthfusion-2.0.0/src/depthfusion/router/bus.py +302 -0
- depthfusion-2.0.0/src/depthfusion/router/cost_estimator.py +83 -0
- depthfusion-2.0.0/src/depthfusion/router/dispatcher.py +49 -0
- depthfusion-2.0.0/src/depthfusion/router/publisher.py +35 -0
- depthfusion-2.0.0/src/depthfusion/router/subscriber.py +17 -0
- depthfusion-2.0.0/src/depthfusion/session/__init__.py +0 -0
- depthfusion-2.0.0/src/depthfusion/session/compactor.py +91 -0
- depthfusion-2.0.0/src/depthfusion/session/loader.py +84 -0
- depthfusion-2.0.0/src/depthfusion/session/scorer.py +69 -0
- depthfusion-2.0.0/src/depthfusion/session/tagger.py +169 -0
- depthfusion-2.0.0/src/depthfusion/storage/__init__.py +3 -0
- depthfusion-2.0.0/src/depthfusion/storage/event_log.py +92 -0
- depthfusion-2.0.0/src/depthfusion/storage/file_index.py +318 -0
- depthfusion-2.0.0/src/depthfusion/storage/memory_store.py +306 -0
- depthfusion-2.0.0/src/depthfusion/storage/telemetry_store.py +336 -0
- depthfusion-2.0.0/src/depthfusion/storage/tier_manager.py +66 -0
- depthfusion-2.0.0/src/depthfusion/storage/vector_store.py +238 -0
- depthfusion-2.0.0/src/depthfusion/sync/__init__.py +4 -0
- depthfusion-2.0.0/src/depthfusion/sync/engine.py +497 -0
- depthfusion-2.0.0/src/depthfusion/sync/router.py +177 -0
- depthfusion-2.0.0/src/depthfusion/telemetry/__init__.py +2 -0
- depthfusion-2.0.0/src/depthfusion/telemetry/recorder.py +142 -0
- depthfusion-2.0.0/src/depthfusion/telemetry/schema.py +65 -0
- depthfusion-2.0.0/src/depthfusion/utils/__init__.py +0 -0
- depthfusion-2.0.0/src/depthfusion/utils/expression_eval.py +257 -0
- depthfusion-2.0.0/src/depthfusion/utils/mode.py +31 -0
- depthfusion-2.0.0/src/depthfusion.egg-info/PKG-INFO +80 -0
- depthfusion-2.0.0/src/depthfusion.egg-info/SOURCES.txt +273 -0
- depthfusion-2.0.0/src/depthfusion.egg-info/dependency_links.txt +1 -0
- depthfusion-2.0.0/src/depthfusion.egg-info/entry_points.txt +2 -0
- depthfusion-2.0.0/src/depthfusion.egg-info/requires.txt +83 -0
- depthfusion-2.0.0/src/depthfusion.egg-info/top_level.txt +1 -0
- depthfusion-2.0.0/tests/test_acl_frontmatter.py +198 -0
- depthfusion-2.0.0/tests/test_acl_property.py +321 -0
- depthfusion-2.0.0/tests/test_acl_retrieval.py +591 -0
- depthfusion-2.0.0/tests/test_acl_verifier.py +203 -0
- depthfusion-2.0.0/tests/test_acl_write_enforcement.py +228 -0
- depthfusion-2.0.0/tests/test_admin_console_policy.py +291 -0
- depthfusion-2.0.0/tests/test_admin_retention.py +284 -0
- depthfusion-2.0.0/tests/test_aggregate_leak.py +311 -0
- depthfusion-2.0.0/tests/test_analytics.py +451 -0
- depthfusion-2.0.0/tests/test_atomic_replace.py +407 -0
- depthfusion-2.0.0/tests/test_audit.py +568 -0
- depthfusion-2.0.0/tests/test_budget.py +433 -0
- depthfusion-2.0.0/tests/test_budget_e2e.py +285 -0
- depthfusion-2.0.0/tests/test_cache.py +951 -0
- depthfusion-2.0.0/tests/test_cache_activity_prefetch.py +574 -0
- depthfusion-2.0.0/tests/test_capability_check.py +384 -0
- depthfusion-2.0.0/tests/test_classification.py +485 -0
- depthfusion-2.0.0/tests/test_cli_migrate.py +209 -0
- depthfusion-2.0.0/tests/test_device_keychain.py +405 -0
- depthfusion-2.0.0/tests/test_device_lease.py +310 -0
- depthfusion-2.0.0/tests/test_device_login.py +217 -0
- depthfusion-2.0.0/tests/test_device_registry.py +350 -0
- depthfusion-2.0.0/tests/test_document_parser_base.py +148 -0
- depthfusion-2.0.0/tests/test_document_parsers.py +467 -0
- depthfusion-2.0.0/tests/test_export_controls.py +234 -0
- depthfusion-2.0.0/tests/test_expression_eval.py +114 -0
- depthfusion-2.0.0/tests/test_fastapi_deps.py +144 -0
- depthfusion-2.0.0/tests/test_generic_parser.py +190 -0
- depthfusion-2.0.0/tests/test_identity_token_validator.py +451 -0
- depthfusion-2.0.0/tests/test_ingest.py +563 -0
- depthfusion-2.0.0/tests/test_legacy_shim.py +364 -0
- depthfusion-2.0.0/tests/test_mcp_authz.py +327 -0
- depthfusion-2.0.0/tests/test_migration_rehearsal.py +549 -0
- depthfusion-2.0.0/tests/test_model_stats.py +162 -0
- depthfusion-2.0.0/tests/test_ocr_parser.py +260 -0
- depthfusion-2.0.0/tests/test_parse_budget.py +175 -0
- depthfusion-2.0.0/tests/test_performance.py +198 -0
- depthfusion-2.0.0/tests/test_policy_engine.py +790 -0
- depthfusion-2.0.0/tests/test_principal_store.py +188 -0
- depthfusion-2.0.0/tests/test_role_admin.py +455 -0
- depthfusion-2.0.0/tests/test_role_matrix.py +225 -0
- depthfusion-2.0.0/tests/test_roles.py +377 -0
- depthfusion-2.0.0/tests/test_route_walker.py +173 -0
- depthfusion-2.0.0/tests/test_security_t684.py +430 -0
- depthfusion-2.0.0/tests/test_service_account.py +177 -0
- depthfusion-2.0.0/tests/test_sharepoint.py +492 -0
- depthfusion-2.0.0/tests/test_sharepoint_connector.py +160 -0
- depthfusion-2.0.0/tests/test_sharepoint_delta_e2e.py +475 -0
- depthfusion-2.0.0/tests/test_sync_engine.py +525 -0
- depthfusion-2.0.0/tests/test_telemetry.py +134 -0
- 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
|