From b7d7b2f3b4f91f737215fe867626e6deb050b931 Mon Sep 17 00:00:00 2001 From: Alex Schapiro Date: Mon, 10 Aug 2026 13:20:54 +0000 Subject: [PATCH] fix: read fallback settings directly instead of via getattr --- strix/core/runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/strix/core/runner.py b/strix/core/runner.py index 38ba6522..b008810f 100644 --- a/strix/core/runner.py +++ b/strix/core/runner.py @@ -176,8 +176,8 @@ async def run_strix_scan( coordinator = AgentCoordinator() coordinator.set_snapshot_path(agents_path) coordinator.configure_denial_fallback( - getattr(settings.llm, "fallback_model", None), - getattr(settings.llm, "denied_retries", 3), + settings.llm.fallback_model, + settings.llm.denied_retries, ) from strix.tools.notes.tools import hydrate_notes_from_disk