18 lines
597 B
Python
18 lines
597 B
Python
"""Performance regression suite for Morrowind agent scenarios.
|
|
|
|
Provides standardised benchmark scenarios, a runner that executes them
|
|
through the heartbeat loop with a mock (or live) world adapter, and
|
|
metrics collection for CI-integrated regression detection.
|
|
"""
|
|
|
|
from infrastructure.world.benchmark.metrics import BenchmarkMetrics
|
|
from infrastructure.world.benchmark.runner import BenchmarkRunner
|
|
from infrastructure.world.benchmark.scenarios import BenchmarkScenario, load_scenarios
|
|
|
|
__all__ = [
|
|
"BenchmarkMetrics",
|
|
"BenchmarkRunner",
|
|
"BenchmarkScenario",
|
|
"load_scenarios",
|
|
]
|