Files
cleveragents-core/benchmarks/semantic_escalation_bench.py
T
freemo db5e5c974f
CI / lint (pull_request) Successful in 14s
CI / typecheck (pull_request) Successful in 31s
CI / security (pull_request) Successful in 30s
CI / quality (pull_request) Successful in 15s
CI / benchmark-publish (pull_request) Has been skipped
CI / build (pull_request) Successful in 15s
CI / unit_tests (pull_request) Successful in 1m58s
CI / integration_tests (pull_request) Successful in 3m24s
CI / docker (pull_request) Successful in 40s
CI / coverage (pull_request) Successful in 4m3s
CI / lint (push) Successful in 12s
CI / typecheck (push) Successful in 33s
CI / quality (push) Successful in 15s
CI / security (push) Successful in 30s
CI / unit_tests (push) Successful in 2m7s
CI / build (push) Successful in 15s
CI / benchmark-regression (push) Has been skipped
CI / integration_tests (push) Successful in 2m57s
CI / docker (push) Successful in 43s
CI / coverage (push) Successful in 4m14s
CI / benchmark-publish (push) Successful in 14m12s
CI / benchmark-regression (pull_request) Successful in 31m33s
feat(autonomy): implement semantic escalation with confidence scoring and threshold comparison
2026-03-04 12:18:51 -05:00

171 lines
5.7 KiB
Python

"""ASV benchmarks for Semantic Escalation confidence computation.
Measures the performance of:
- ConfidenceFactors model construction
- EscalationDecision model construction
- AutonomyController confidence computation
- AutonomyController.should_proceed_automatically end-to-end
- Historical outcome recording and success rate retrieval
"""
from __future__ import annotations
import sys
from pathlib import Path
try:
from cleveragents.application.services.autonomy_controller import (
AutonomyController,
)
from cleveragents.domain.models.core.automation_profile import (
BUILTIN_PROFILES,
AutomationProfile,
)
from cleveragents.domain.models.core.escalation import (
ConfidenceFactors,
HistoricalOutcome,
OperationContext,
)
except ModuleNotFoundError:
sys.path.insert(0, str(Path(__file__).resolve().parents[1] / "src"))
from cleveragents.application.services.autonomy_controller import (
AutonomyController,
)
from cleveragents.domain.models.core.automation_profile import (
BUILTIN_PROFILES,
AutomationProfile,
)
from cleveragents.domain.models.core.escalation import (
ConfidenceFactors,
HistoricalOutcome,
OperationContext,
)
class ConfidenceFactorsConstructionSuite:
"""Benchmark ConfidenceFactors model construction."""
def time_factors_construction_defaults(self) -> None:
"""Benchmark default ConfidenceFactors creation."""
ConfidenceFactors()
def time_factors_construction_full(self) -> None:
"""Benchmark fully-populated ConfidenceFactors creation."""
ConfidenceFactors(
past_success_rate=0.85,
codebase_familiarity=0.9,
risk_assessment=0.2,
invariant_complexity=0.3,
)
class ConfidenceComputationSuite:
"""Benchmark confidence score computation throughput."""
def setup(self) -> None:
"""Set up the controller and factors for benchmarking."""
self.controller = AutonomyController()
self.factors_high = ConfidenceFactors(
past_success_rate=0.95,
codebase_familiarity=0.9,
risk_assessment=0.1,
invariant_complexity=0.1,
)
self.factors_low = ConfidenceFactors(
past_success_rate=0.1,
codebase_familiarity=0.2,
risk_assessment=0.9,
invariant_complexity=0.8,
)
self.factors_neutral = ConfidenceFactors(
past_success_rate=0.5,
codebase_familiarity=0.5,
risk_assessment=0.5,
invariant_complexity=0.5,
)
def time_compute_confidence_high(self) -> None:
"""Benchmark confidence computation with high factors."""
self.controller.compute_confidence(self.factors_high)
def time_compute_confidence_low(self) -> None:
"""Benchmark confidence computation with low factors."""
self.controller.compute_confidence(self.factors_low)
def time_compute_confidence_neutral(self) -> None:
"""Benchmark confidence computation with neutral factors."""
self.controller.compute_confidence(self.factors_neutral)
class EscalationDecisionSuite:
"""Benchmark end-to-end escalation decision throughput."""
def setup(self) -> None:
"""Set up controller, factors, and profiles."""
self.controller = AutonomyController()
self.factors = ConfidenceFactors(
past_success_rate=0.8,
codebase_familiarity=0.75,
risk_assessment=0.15,
invariant_complexity=0.2,
)
self.operation = OperationContext(operation_type="auto_execute")
self.profile_cautious = BUILTIN_PROFILES["cautious"]
self.profile_fullauto = BUILTIN_PROFILES["full-auto"]
self.profile_manual = BUILTIN_PROFILES["manual"]
def time_should_proceed_cautious(self) -> None:
"""Benchmark should_proceed_automatically with cautious profile."""
self.controller.should_proceed_automatically(
self.operation,
self.factors,
self.profile_cautious,
)
def time_should_proceed_fullauto(self) -> None:
"""Benchmark should_proceed_automatically with full-auto profile."""
self.controller.should_proceed_automatically(
self.operation,
self.factors,
self.profile_fullauto,
)
def time_should_proceed_manual(self) -> None:
"""Benchmark should_proceed_automatically with manual profile."""
self.controller.should_proceed_automatically(
self.operation,
self.factors,
self.profile_manual,
)
class HistoricalTrackingSuite:
"""Benchmark historical outcome recording and retrieval."""
def setup(self) -> None:
"""Set up controller with pre-populated history."""
self.controller = AutonomyController()
self.outcome_success = HistoricalOutcome(
operation_type="auto_execute",
succeeded=True,
)
self.outcome_failure = HistoricalOutcome(
operation_type="auto_execute",
succeeded=False,
)
# Pre-populate history
for _ in range(100):
self.controller.record_outcome(self.outcome_success)
def time_record_outcome(self) -> None:
"""Benchmark recording a single outcome."""
self.controller.record_outcome(self.outcome_success)
def time_get_success_rate(self) -> None:
"""Benchmark retrieving historical success rate."""
self.controller.get_historical_success_rate("auto_execute")
def time_get_history_count(self) -> None:
"""Benchmark retrieving history count."""
self.controller.get_history_count("auto_execute")