feat(benchmark): add module exports

Public API exports for the benchmark module.
This commit is contained in:
2026-02-03 18:10:07 +00:00
parent 9115f0c25b
commit 40fa39485e

View File

@@ -0,0 +1,12 @@
"""Benchmark module for quality tracking and regression detection."""
from veritext.benchmark.models import BenchmarkRun, RegressionReport
from veritext.benchmark.runner import Benchmark
from veritext.benchmark.storage import BenchmarkStorage
__all__ = [
"Benchmark",
"BenchmarkRun",
"BenchmarkStorage",
"RegressionReport",
]