cbc3e11a53
head_auto_apply_precision 0.97→0.98, head_auto_apply_min_positives 30→50, ccip_auto_apply_threshold 0.92→0.95 (operator-asked). Model defaults change for fresh installs; migration 0081 bumps the existing singleton row IFF still at the old default (won't clobber a deliberate operator change). ml_admin bounds already permit these. Fixed a stale comment in the auto-apply test. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01CDgx8bQS5YrGRK76v8HUnM
51 lines
1.5 KiB
Python
51 lines
1.5 KiB
Python
"""stricter auto-apply defaults (milestone 139) — cut graduate/auto-apply misfires
|
|
|
|
head_auto_apply_precision 0.97→0.98, head_auto_apply_min_positives 30→50,
|
|
ccip_auto_apply_threshold 0.92→0.95 (operator-asked 2026-07-06). The model
|
|
defaults change for fresh installs; here we bump the existing singleton row IFF
|
|
it is still at the previous default, so a deliberate operator change is NOT
|
|
clobbered.
|
|
|
|
Revision ID: 0081
|
|
Revises: 0080
|
|
Create Date: 2026-07-06
|
|
"""
|
|
from typing import Sequence, Union
|
|
|
|
from alembic import op
|
|
|
|
revision: str = "0081"
|
|
down_revision: Union[str, None] = "0080"
|
|
branch_labels: Union[str, Sequence[str], None] = None
|
|
depends_on: Union[str, Sequence[str], None] = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
op.execute(
|
|
"UPDATE ml_settings SET head_auto_apply_precision = 0.98 "
|
|
"WHERE head_auto_apply_precision = 0.97"
|
|
)
|
|
op.execute(
|
|
"UPDATE ml_settings SET head_auto_apply_min_positives = 50 "
|
|
"WHERE head_auto_apply_min_positives = 30"
|
|
)
|
|
op.execute(
|
|
"UPDATE ml_settings SET ccip_auto_apply_threshold = 0.95 "
|
|
"WHERE ccip_auto_apply_threshold = 0.92"
|
|
)
|
|
|
|
|
|
def downgrade() -> None:
|
|
op.execute(
|
|
"UPDATE ml_settings SET head_auto_apply_precision = 0.97 "
|
|
"WHERE head_auto_apply_precision = 0.98"
|
|
)
|
|
op.execute(
|
|
"UPDATE ml_settings SET head_auto_apply_min_positives = 30 "
|
|
"WHERE head_auto_apply_min_positives = 50"
|
|
)
|
|
op.execute(
|
|
"UPDATE ml_settings SET ccip_auto_apply_threshold = 0.92 "
|
|
"WHERE ccip_auto_apply_threshold = 0.95"
|
|
)
|