total-agent-memory 12.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.
- total_agent_memory-12.0.0/LICENSE +21 -0
- total_agent_memory-12.0.0/PKG-INFO +1310 -0
- total_agent_memory-12.0.0/README.md +1280 -0
- total_agent_memory-12.0.0/claude_total_memory/__init__.py +24 -0
- total_agent_memory-12.0.0/claude_total_memory/lookup.py +12 -0
- total_agent_memory-12.0.0/claude_total_memory/server.py +6 -0
- total_agent_memory-12.0.0/pyproject.toml +89 -0
- total_agent_memory-12.0.0/setup.cfg +4 -0
- total_agent_memory-12.0.0/src/__init__.py +0 -0
- total_agent_memory-12.0.0/src/active_context.py +205 -0
- total_agent_memory-12.0.0/src/ai_layer/__init__.py +77 -0
- total_agent_memory-12.0.0/src/ai_layer/answerability.py +386 -0
- total_agent_memory-12.0.0/src/ai_layer/contradiction_detector.py +37 -0
- total_agent_memory-12.0.0/src/ai_layer/coref_resolver.py +21 -0
- total_agent_memory-12.0.0/src/ai_layer/enrichment_jobs.py +129 -0
- total_agent_memory-12.0.0/src/ai_layer/enrichment_worker.py +44 -0
- total_agent_memory-12.0.0/src/ai_layer/iterative_retriever.py +469 -0
- total_agent_memory-12.0.0/src/ai_layer/keyword_extractor.py +51 -0
- total_agent_memory-12.0.0/src/ai_layer/quality_gate.py +23 -0
- total_agent_memory-12.0.0/src/ai_layer/query_rewriter.py +22 -0
- total_agent_memory-12.0.0/src/ai_layer/question_generator.py +53 -0
- total_agent_memory-12.0.0/src/ai_layer/reflection.py +30 -0
- total_agent_memory-12.0.0/src/ai_layer/relation_extractor.py +64 -0
- total_agent_memory-12.0.0/src/ai_layer/reranker.py +28 -0
- total_agent_memory-12.0.0/src/ai_layer/self_improve.py +30 -0
- total_agent_memory-12.0.0/src/ai_layer/summarizer.py +39 -0
- total_agent_memory-12.0.0/src/ai_layer/verifier.py +506 -0
- total_agent_memory-12.0.0/src/analogy.py +157 -0
- total_agent_memory-12.0.0/src/associative/__init__.py +0 -0
- total_agent_memory-12.0.0/src/associative/activation.py +244 -0
- total_agent_memory-12.0.0/src/associative/composition.py +338 -0
- total_agent_memory-12.0.0/src/associative/recall.py +383 -0
- total_agent_memory-12.0.0/src/ast_ingest/__init__.py +5 -0
- total_agent_memory-12.0.0/src/ast_ingest/ingester.py +401 -0
- total_agent_memory-12.0.0/src/auto_episode_capture.py +416 -0
- total_agent_memory-12.0.0/src/auto_extract_active.py +219 -0
- total_agent_memory-12.0.0/src/auto_self_improve.py +317 -0
- total_agent_memory-12.0.0/src/auto_session_save.py +104 -0
- total_agent_memory-12.0.0/src/autofilter.py +191 -0
- total_agent_memory-12.0.0/src/cache.py +237 -0
- total_agent_memory-12.0.0/src/cache_layer.py +528 -0
- total_agent_memory-12.0.0/src/canonical_tags.py +390 -0
- total_agent_memory-12.0.0/src/choose_embed.py +201 -0
- total_agent_memory-12.0.0/src/cognitive/__init__.py +1 -0
- total_agent_memory-12.0.0/src/cognitive/engine.py +979 -0
- total_agent_memory-12.0.0/src/config.py +896 -0
- total_agent_memory-12.0.0/src/content_filter.py +270 -0
- total_agent_memory-12.0.0/src/context_expander.py +179 -0
- total_agent_memory-12.0.0/src/contradiction_detector.py +476 -0
- total_agent_memory-12.0.0/src/coref_resolver.py +302 -0
- total_agent_memory-12.0.0/src/dashboard.py +4560 -0
- total_agent_memory-12.0.0/src/dashboard_v6.py +1417 -0
- total_agent_memory-12.0.0/src/decisions.py +320 -0
- total_agent_memory-12.0.0/src/deep_enricher.py +286 -0
- total_agent_memory-12.0.0/src/deep_enrichment_queue.py +169 -0
- total_agent_memory-12.0.0/src/embed_provider.py +441 -0
- total_agent_memory-12.0.0/src/enrichment_filter.py +108 -0
- total_agent_memory-12.0.0/src/enrichment_worker.py +483 -0
- total_agent_memory-12.0.0/src/entity_dedup.py +354 -0
- total_agent_memory-12.0.0/src/episodic.py +328 -0
- total_agent_memory-12.0.0/src/error_capture.py +248 -0
- total_agent_memory-12.0.0/src/eval_harness.py +234 -0
- total_agent_memory-12.0.0/src/extract_transcript.py +411 -0
- total_agent_memory-12.0.0/src/fact_index.py +510 -0
- total_agent_memory-12.0.0/src/fact_merger.py +245 -0
- total_agent_memory-12.0.0/src/fact_synthesizer.py +375 -0
- total_agent_memory-12.0.0/src/file_context.py +338 -0
- total_agent_memory-12.0.0/src/fusion.py +138 -0
- total_agent_memory-12.0.0/src/graph/__init__.py +8 -0
- total_agent_memory-12.0.0/src/graph/auto_link.py +81 -0
- total_agent_memory-12.0.0/src/graph/enricher.py +505 -0
- total_agent_memory-12.0.0/src/graph/indexer.py +872 -0
- total_agent_memory-12.0.0/src/graph/query.py +470 -0
- total_agent_memory-12.0.0/src/graph/store.py +731 -0
- total_agent_memory-12.0.0/src/graph_expander.py +395 -0
- total_agent_memory-12.0.0/src/ingestion/__init__.py +13 -0
- total_agent_memory-12.0.0/src/ingestion/chunker.py +271 -0
- total_agent_memory-12.0.0/src/ingestion/enricher.py +249 -0
- total_agent_memory-12.0.0/src/ingestion/extractor.py +541 -0
- total_agent_memory-12.0.0/src/ingestion/file_watcher.py +322 -0
- total_agent_memory-12.0.0/src/ingestion/gateway.py +345 -0
- total_agent_memory-12.0.0/src/ingestion/ocr.py +264 -0
- total_agent_memory-12.0.0/src/intents.py +194 -0
- total_agent_memory-12.0.0/src/llm_provider.py +404 -0
- total_agent_memory-12.0.0/src/memory_core/__init__.py +33 -0
- total_agent_memory-12.0.0/src/memory_core/answer_router.py +359 -0
- total_agent_memory-12.0.0/src/memory_core/cache.py +123 -0
- total_agent_memory-12.0.0/src/memory_core/calibration.py +401 -0
- total_agent_memory-12.0.0/src/memory_core/chunker.py +438 -0
- total_agent_memory-12.0.0/src/memory_core/classifier.py +406 -0
- total_agent_memory-12.0.0/src/memory_core/dedup.py +87 -0
- total_agent_memory-12.0.0/src/memory_core/embedding_cache.py +232 -0
- total_agent_memory-12.0.0/src/memory_core/embedding_spaces.py +127 -0
- total_agent_memory-12.0.0/src/memory_core/embeddings.py +173 -0
- total_agent_memory-12.0.0/src/memory_core/entity_resolver.py +601 -0
- total_agent_memory-12.0.0/src/memory_core/episodes/__init__.py +27 -0
- total_agent_memory-12.0.0/src/memory_core/episodes/extractor.py +469 -0
- total_agent_memory-12.0.0/src/memory_core/episodes/retriever.py +383 -0
- total_agent_memory-12.0.0/src/memory_core/episodes/schema.py +90 -0
- total_agent_memory-12.0.0/src/memory_core/graph_links.py +131 -0
- total_agent_memory-12.0.0/src/memory_core/health.py +77 -0
- total_agent_memory-12.0.0/src/memory_core/idk_router.py +214 -0
- total_agent_memory-12.0.0/src/memory_core/negative_retrieval.py +510 -0
- total_agent_memory-12.0.0/src/memory_core/storage.py +64 -0
- total_agent_memory-12.0.0/src/memory_core/telemetry.py +91 -0
- total_agent_memory-12.0.0/src/memory_core/temporal/__init__.py +80 -0
- total_agent_memory-12.0.0/src/memory_core/temporal/allen.py +406 -0
- total_agent_memory-12.0.0/src/memory_core/temporal/arithmetic.py +281 -0
- total_agent_memory-12.0.0/src/memory_core/temporal/normalizer.py +581 -0
- total_agent_memory-12.0.0/src/memory_core/vector_store.py +254 -0
- total_agent_memory-12.0.0/src/memory_systems/__init__.py +0 -0
- total_agent_memory-12.0.0/src/memory_systems/episode_store.py +278 -0
- total_agent_memory-12.0.0/src/memory_systems/self_model.py +476 -0
- total_agent_memory-12.0.0/src/memory_systems/signals.py +246 -0
- total_agent_memory-12.0.0/src/memory_systems/skill_store.py +391 -0
- total_agent_memory-12.0.0/src/metrics/__init__.py +0 -0
- total_agent_memory-12.0.0/src/migrate_knowledge_to_graph.py +337 -0
- total_agent_memory-12.0.0/src/models.py +1296 -0
- total_agent_memory-12.0.0/src/multi_repr_search.py +334 -0
- total_agent_memory-12.0.0/src/multi_repr_store.py +202 -0
- total_agent_memory-12.0.0/src/outbox.py +325 -0
- total_agent_memory-12.0.0/src/paths.py +163 -0
- total_agent_memory-12.0.0/src/privacy_filter.py +19 -0
- total_agent_memory-12.0.0/src/procedural.py +356 -0
- total_agent_memory-12.0.0/src/project_wiki.py +430 -0
- total_agent_memory-12.0.0/src/quality_gate.py +460 -0
- total_agent_memory-12.0.0/src/query_rewriter.py +300 -0
- total_agent_memory-12.0.0/src/query_router.py +285 -0
- total_agent_memory-12.0.0/src/recall_modes.py +278 -0
- total_agent_memory-12.0.0/src/reembed.py +308 -0
- total_agent_memory-12.0.0/src/reflection/__init__.py +1 -0
- total_agent_memory-12.0.0/src/reflection/agent.py +688 -0
- total_agent_memory-12.0.0/src/reflection/digest.py +484 -0
- total_agent_memory-12.0.0/src/reflection/scheduler.py +2202 -0
- total_agent_memory-12.0.0/src/reflection/synthesize.py +463 -0
- total_agent_memory-12.0.0/src/representations.py +231 -0
- total_agent_memory-12.0.0/src/representations_queue.py +204 -0
- total_agent_memory-12.0.0/src/reranker.py +672 -0
- total_agent_memory-12.0.0/src/server.py +6800 -0
- total_agent_memory-12.0.0/src/session_continuity.py +413 -0
- total_agent_memory-12.0.0/src/subject_predicate_retriever.py +184 -0
- total_agent_memory-12.0.0/src/task_classifier.py +181 -0
- total_agent_memory-12.0.0/src/task_phases.py +299 -0
- total_agent_memory-12.0.0/src/temporal_filter.py +199 -0
- total_agent_memory-12.0.0/src/temporal_index.py +368 -0
- total_agent_memory-12.0.0/src/temporal_kg.py +348 -0
- total_agent_memory-12.0.0/src/tools/__init__.py +0 -0
- total_agent_memory-12.0.0/src/tools/analyze_project.py +396 -0
- total_agent_memory-12.0.0/src/tools/backfill_orphan_edges.py +159 -0
- total_agent_memory-12.0.0/src/tools/backfill_v6.py +84 -0
- total_agent_memory-12.0.0/src/tools/benchmark.py +940 -0
- total_agent_memory-12.0.0/src/tools/brain_autonomy.py +614 -0
- total_agent_memory-12.0.0/src/tools/brain_health.py +489 -0
- total_agent_memory-12.0.0/src/tools/check_updates.py +166 -0
- total_agent_memory-12.0.0/src/tools/context_layers.py +472 -0
- total_agent_memory-12.0.0/src/tools/cross_project.py +1021 -0
- total_agent_memory-12.0.0/src/tools/dependency_monitor.py +285 -0
- total_agent_memory-12.0.0/src/tools/export_knowledge.py +314 -0
- total_agent_memory-12.0.0/src/tools/git_observer.py +968 -0
- total_agent_memory-12.0.0/src/tools/graph_enrichment.py +1103 -0
- total_agent_memory-12.0.0/src/tools/idea_engine.py +1215 -0
- total_agent_memory-12.0.0/src/tools/import_projects_now.py +312 -0
- total_agent_memory-12.0.0/src/tools/improve_search.py +877 -0
- total_agent_memory-12.0.0/src/tools/llm_router.py +397 -0
- total_agent_memory-12.0.0/src/tools/merge_duplicate_nodes.py +491 -0
- total_agent_memory-12.0.0/src/tools/obsidian_sync.py +399 -0
- total_agent_memory-12.0.0/src/tools/predictive.py +1176 -0
- total_agent_memory-12.0.0/src/tools/run_reflection.py +193 -0
- total_agent_memory-12.0.0/src/tools/task_manager.py +816 -0
- total_agent_memory-12.0.0/src/tools/tech_radar.py +275 -0
- total_agent_memory-12.0.0/src/tools/version_status.py +141 -0
- total_agent_memory-12.0.0/src/triple_extraction_queue.py +208 -0
- total_agent_memory-12.0.0/src/v11_handlers.py +236 -0
- total_agent_memory-12.0.0/src/validator.py +235 -0
- total_agent_memory-12.0.0/src/verbosity.py +49 -0
- total_agent_memory-12.0.0/src/version.py +10 -0
- total_agent_memory-12.0.0/src/workers/__init__.py +34 -0
- total_agent_memory-12.0.0/src/workers/consolidation_daemon.py +849 -0
- total_agent_memory-12.0.0/src/workers/project_activity.py +193 -0
- total_agent_memory-12.0.0/tests/test_activation.py +187 -0
- total_agent_memory-12.0.0/tests/test_active_context.py +178 -0
- total_agent_memory-12.0.0/tests/test_analogy.py +132 -0
- total_agent_memory-12.0.0/tests/test_answer_router.py +451 -0
- total_agent_memory-12.0.0/tests/test_answerability.py +569 -0
- total_agent_memory-12.0.0/tests/test_ast_ingest.py +227 -0
- total_agent_memory-12.0.0/tests/test_autofilter.py +173 -0
- total_agent_memory-12.0.0/tests/test_backfill_orphan_edges.py +152 -0
- total_agent_memory-12.0.0/tests/test_backfill_v6.py +90 -0
- total_agent_memory-12.0.0/tests/test_binary_search_edge_cases.py +115 -0
- total_agent_memory-12.0.0/tests/test_builtin_filters.py +88 -0
- total_agent_memory-12.0.0/tests/test_cache_layer.py +319 -0
- total_agent_memory-12.0.0/tests/test_cache_layer_bench.py +86 -0
- total_agent_memory-12.0.0/tests/test_cache_layer_integration.py +85 -0
- total_agent_memory-12.0.0/tests/test_calibration.py +341 -0
- total_agent_memory-12.0.0/tests/test_canonical_tags.py +168 -0
- total_agent_memory-12.0.0/tests/test_check_updates_escape.py +52 -0
- total_agent_memory-12.0.0/tests/test_choose_embed.py +230 -0
- total_agent_memory-12.0.0/tests/test_choose_embed_openai.py +97 -0
- total_agent_memory-12.0.0/tests/test_cognitive.py +86 -0
- total_agent_memory-12.0.0/tests/test_compare_eval.py +158 -0
- total_agent_memory-12.0.0/tests/test_compression.py +185 -0
- total_agent_memory-12.0.0/tests/test_config.py +312 -0
- total_agent_memory-12.0.0/tests/test_config_provider.py +276 -0
- total_agent_memory-12.0.0/tests/test_consolidation_chaos_kill.py +274 -0
- total_agent_memory-12.0.0/tests/test_consolidation_idle_detection.py +266 -0
- total_agent_memory-12.0.0/tests/test_consolidation_lock_recall_concurrent.py +258 -0
- total_agent_memory-12.0.0/tests/test_content_filter.py +243 -0
- total_agent_memory-12.0.0/tests/test_context_expander.py +129 -0
- total_agent_memory-12.0.0/tests/test_contradiction_detector.py +313 -0
- total_agent_memory-12.0.0/tests/test_coref_resolver.py +289 -0
- total_agent_memory-12.0.0/tests/test_dashboard_citations.py +221 -0
- total_agent_memory-12.0.0/tests/test_dashboard_http_smoke.py +160 -0
- total_agent_memory-12.0.0/tests/test_dashboard_service.py +269 -0
- total_agent_memory-12.0.0/tests/test_dashboard_v6.py +230 -0
- total_agent_memory-12.0.0/tests/test_decay_per_repr.py +92 -0
- total_agent_memory-12.0.0/tests/test_decisions.py +324 -0
- total_agent_memory-12.0.0/tests/test_deep_enricher.py +143 -0
- total_agent_memory-12.0.0/tests/test_deep_enrichment_queue.py +183 -0
- total_agent_memory-12.0.0/tests/test_diagnose_scripts.py +160 -0
- total_agent_memory-12.0.0/tests/test_e2e_v8_workflow.py +419 -0
- total_agent_memory-12.0.0/tests/test_edge_freshness.py +164 -0
- total_agent_memory-12.0.0/tests/test_embed_provider.py +271 -0
- total_agent_memory-12.0.0/tests/test_embed_provider_openai.py +347 -0
- total_agent_memory-12.0.0/tests/test_enrichment_filter.py +174 -0
- total_agent_memory-12.0.0/tests/test_enrichment_worker.py +392 -0
- total_agent_memory-12.0.0/tests/test_ensemble_judge.py +204 -0
- total_agent_memory-12.0.0/tests/test_entity_dedup.py +309 -0
- total_agent_memory-12.0.0/tests/test_entity_resolver.py +572 -0
- total_agent_memory-12.0.0/tests/test_episodes.py +164 -0
- total_agent_memory-12.0.0/tests/test_episodes_extractor.py +423 -0
- total_agent_memory-12.0.0/tests/test_episodes_retriever.py +300 -0
- total_agent_memory-12.0.0/tests/test_episodic.py +276 -0
- total_agent_memory-12.0.0/tests/test_error_capture.py +205 -0
- total_agent_memory-12.0.0/tests/test_eval_harness.py +195 -0
- total_agent_memory-12.0.0/tests/test_extract_triples_v2.py +140 -0
- total_agent_memory-12.0.0/tests/test_fact_index.py +328 -0
- total_agent_memory-12.0.0/tests/test_fact_merger.py +245 -0
- total_agent_memory-12.0.0/tests/test_fact_synthesizer_v2.py +95 -0
- total_agent_memory-12.0.0/tests/test_few_shot_v3.py +225 -0
- total_agent_memory-12.0.0/tests/test_file_context.py +251 -0
- total_agent_memory-12.0.0/tests/test_finetune_embedding.py +162 -0
- total_agent_memory-12.0.0/tests/test_fusion.py +103 -0
- total_agent_memory-12.0.0/tests/test_graph.py +414 -0
- total_agent_memory-12.0.0/tests/test_has_llm_provider_aware.py +190 -0
- total_agent_memory-12.0.0/tests/test_hooks_user_prompt_submit.py +159 -0
- total_agent_memory-12.0.0/tests/test_idk_router.py +240 -0
- total_agent_memory-12.0.0/tests/test_importance_levels.py +147 -0
- total_agent_memory-12.0.0/tests/test_ingestion.py +144 -0
- total_agent_memory-12.0.0/tests/test_install_codex.py +26 -0
- total_agent_memory-12.0.0/tests/test_install_ide_flag.py +236 -0
- total_agent_memory-12.0.0/tests/test_install_linux.py +296 -0
- total_agent_memory-12.0.0/tests/test_install_macos_hooks.py +334 -0
- total_agent_memory-12.0.0/tests/test_integration_active_context.py +213 -0
- total_agent_memory-12.0.0/tests/test_integration_decision_mcp.py +213 -0
- total_agent_memory-12.0.0/tests/test_integration_deep_enrich.py +96 -0
- total_agent_memory-12.0.0/tests/test_integration_embed_wiring.py +266 -0
- total_agent_memory-12.0.0/tests/test_integration_expand_context.py +85 -0
- total_agent_memory-12.0.0/tests/test_integration_filter_save.py +138 -0
- total_agent_memory-12.0.0/tests/test_integration_memory_save.py +89 -0
- total_agent_memory-12.0.0/tests/test_integration_multi_repr_search.py +112 -0
- total_agent_memory-12.0.0/tests/test_integration_no_llm.py +99 -0
- total_agent_memory-12.0.0/tests/test_integration_privacy.py +117 -0
- total_agent_memory-12.0.0/tests/test_integration_provider_wiring.py +261 -0
- total_agent_memory-12.0.0/tests/test_integration_queue_stats.py +62 -0
- total_agent_memory-12.0.0/tests/test_integration_representations.py +108 -0
- total_agent_memory-12.0.0/tests/test_integration_rerank_multi_repr.py +87 -0
- total_agent_memory-12.0.0/tests/test_integration_task_mcp.py +107 -0
- total_agent_memory-12.0.0/tests/test_intents.py +164 -0
- total_agent_memory-12.0.0/tests/test_iterative_retriever.py +378 -0
- total_agent_memory-12.0.0/tests/test_llm_provider.py +307 -0
- total_agent_memory-12.0.0/tests/test_llm_runtime_config.py +78 -0
- total_agent_memory-12.0.0/tests/test_lookup_cli.py +164 -0
- total_agent_memory-12.0.0/tests/test_memory_get.py +140 -0
- total_agent_memory-12.0.0/tests/test_memory_nudge_hook.py +226 -0
- total_agent_memory-12.0.0/tests/test_merge_duplicate_nodes.py +265 -0
- total_agent_memory-12.0.0/tests/test_mine_locomo_fewshot.py +112 -0
- total_agent_memory-12.0.0/tests/test_multi_repr_search.py +136 -0
- total_agent_memory-12.0.0/tests/test_multi_representation.py +231 -0
- total_agent_memory-12.0.0/tests/test_negative_retrieval.py +666 -0
- total_agent_memory-12.0.0/tests/test_no_llm_hot_path_v11.py +454 -0
- total_agent_memory-12.0.0/tests/test_outbox.py +305 -0
- total_agent_memory-12.0.0/tests/test_parallel_retrieval.py +262 -0
- total_agent_memory-12.0.0/tests/test_paths_migration.py +155 -0
- total_agent_memory-12.0.0/tests/test_per_tier_decay.py +117 -0
- total_agent_memory-12.0.0/tests/test_phase_scoped_rules.py +215 -0
- total_agent_memory-12.0.0/tests/test_post_tool_capture.py +152 -0
- total_agent_memory-12.0.0/tests/test_privacy_filter.py +97 -0
- total_agent_memory-12.0.0/tests/test_procedural.py +210 -0
- total_agent_memory-12.0.0/tests/test_project_activity.py +182 -0
- total_agent_memory-12.0.0/tests/test_project_wiki.py +276 -0
- total_agent_memory-12.0.0/tests/test_quality_gate.py +311 -0
- total_agent_memory-12.0.0/tests/test_query_router.py +237 -0
- total_agent_memory-12.0.0/tests/test_recall_filters.py +51 -0
- total_agent_memory-12.0.0/tests/test_recall_modes.py +356 -0
- total_agent_memory-12.0.0/tests/test_reflection.py +164 -0
- total_agent_memory-12.0.0/tests/test_reflection_full_integration.py +130 -0
- total_agent_memory-12.0.0/tests/test_repr_drift.py +207 -0
- total_agent_memory-12.0.0/tests/test_representations_queue.py +159 -0
- total_agent_memory-12.0.0/tests/test_reranker_backend.py +153 -0
- total_agent_memory-12.0.0/tests/test_reranker_bge.py +405 -0
- total_agent_memory-12.0.0/tests/test_run_drain.py +104 -0
- total_agent_memory-12.0.0/tests/test_self_model.py +177 -0
- total_agent_memory-12.0.0/tests/test_session_continuity.py +141 -0
- total_agent_memory-12.0.0/tests/test_session_end_auto_compress.py +204 -0
- total_agent_memory-12.0.0/tests/test_signals.py +154 -0
- total_agent_memory-12.0.0/tests/test_skills.py +153 -0
- total_agent_memory-12.0.0/tests/test_task_classifier.py +130 -0
- total_agent_memory-12.0.0/tests/test_task_phases.py +160 -0
- total_agent_memory-12.0.0/tests/test_temporal_allen.py +313 -0
- total_agent_memory-12.0.0/tests/test_temporal_arithmetic.py +236 -0
- total_agent_memory-12.0.0/tests/test_temporal_kg.py +298 -0
- total_agent_memory-12.0.0/tests/test_temporal_normalizer.py +308 -0
- total_agent_memory-12.0.0/tests/test_triple_extraction_queue.py +328 -0
- total_agent_memory-12.0.0/tests/test_triple_queue_reclaim.py +115 -0
- total_agent_memory-12.0.0/tests/test_v11_eval_tools.py +272 -0
- total_agent_memory-12.0.0/tests/test_v11_layer_separation.py +189 -0
- total_agent_memory-12.0.0/tests/test_v11_new_tools.py +437 -0
- total_agent_memory-12.0.0/tests/test_v11_perf_gate.py +243 -0
- total_agent_memory-12.0.0/tests/test_validator.py +249 -0
- total_agent_memory-12.0.0/tests/test_verbosity.py +61 -0
- total_agent_memory-12.0.0/tests/test_verifier.py +326 -0
- total_agent_memory-12.0.0/tests/test_verifier_calibration.py +319 -0
- total_agent_memory-12.0.0/tests/test_windows_install_files.py +276 -0
- total_agent_memory-12.0.0/total_agent_memory/__init__.py +3 -0
- total_agent_memory-12.0.0/total_agent_memory/lookup.py +191 -0
- total_agent_memory-12.0.0/total_agent_memory/paths.py +10 -0
- total_agent_memory-12.0.0/total_agent_memory/server.py +25 -0
- total_agent_memory-12.0.0/total_agent_memory.egg-info/PKG-INFO +1310 -0
- total_agent_memory-12.0.0/total_agent_memory.egg-info/SOURCES.txt +331 -0
- total_agent_memory-12.0.0/total_agent_memory.egg-info/dependency_links.txt +1 -0
- total_agent_memory-12.0.0/total_agent_memory.egg-info/entry_points.txt +7 -0
- total_agent_memory-12.0.0/total_agent_memory.egg-info/requires.txt +6 -0
- total_agent_memory-12.0.0/total_agent_memory.egg-info/top_level.txt +3 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025-2026 Claude Total Memory Contributors
|
|
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.
|