Merge branch 'eval/elapsed-time-memoir-batch-chunk' into development

This commit is contained in:
Kevin
2026-04-10 10:27:41 +08:00
66 changed files with 5246 additions and 705 deletions

View File

@@ -31,6 +31,7 @@ def test_phase1_batch_enabled_by_default() -> None:
s = Settings()
assert s.memoir_phase1_batch_llm_enabled is True
assert s.memoir_phase1_batch_llm_chunk_size >= 1
def test_quality_pass_enabled_by_default() -> None:
@@ -146,7 +147,7 @@ def test_ingest_transcript_sync_no_longer_calls_enrichment_inline() -> None:
source = inspect.getsource(ingest_transcript_sync)
assert "enrich_memory_after_ingest_sync" not in source
assert "enrich_memory_source" in source
assert "schedule_memory_enrichment" in source
# ---------------------------------------------------------------------------