Coverage for src / local_deep_research / benchmarks / models / __init__.py: 0%

2 statements  

« prev     ^ index     » next       coverage.py v7.12.0, created at 2026-01-11 00:51 +0000

1"""Benchmark database models for ORM.""" 

2 

3from ...database.models import ( 

4 BenchmarkConfig, 

5 BenchmarkProgress, 

6 BenchmarkResult, 

7 BenchmarkRun, 

8 BenchmarkStatus, 

9 DatasetType, 

10) 

11 

12__all__ = [ 

13 "BenchmarkConfig", 

14 "BenchmarkProgress", 

15 "BenchmarkResult", 

16 "BenchmarkRun", 

17 "BenchmarkStatus", 

18 "DatasetType", 

19]