Coverage for astrocyte/eval/__init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.15.0, created at 2026-07-04 05:24 +0000

1"""Astrocyte evaluation utilities. 

2 

3Used by the PageIndex bench scripts in ``scripts/bench_pageindex_*.py``. 

4Surface is intentionally minimal — just the LLM judges and the 

5terminal-error classifier. The v0.x bench harness 

6(``scripts/run_benchmarks.py``) and its supporting modules 

7(``MemoryEvaluator``, ``compare_providers``, etc.) were removed in May 

82026; see ``docs/_design/benchmark-comparison-methodology.md``. 

9""" 

10 

11from astrocyte.eval._terminal_error import is_terminal_error 

12 

13__all__ = ["is_terminal_error"]