wire up benchmark exports
Public API exports for the benchmark module.
This commit is contained in:
12
src/veritext/benchmark/__init__.py
Normal file
12
src/veritext/benchmark/__init__.py
Normal 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",
|
||||
]
|
||||
Reference in New Issue
Block a user