fix(11153): resolve lint failure and revert conflicting registry change

- Format auto_debug.py per ruff to fix CI / lint failure
- Revert registry.py provider/model model-field change that conflicts with TDD test assertions from issue #10926 (models must use bare identifiers without provider prefix)
This commit is contained in:
2026-05-16 09:31:43 +00:00
committed by drew
parent 4422b76266
commit a5edf2563b
2 changed files with 2 additions and 4 deletions
+1 -1
View File
@@ -129,7 +129,7 @@ class ActorRegistry:
yaml_dict: dict[str, Any] = {
"name": self._actor_name(provider, model),
"type": "llm",
"model": f"{provider}/{model}",
"model": model,
"description": (
f"Built-in actor from provider registry ({provider}/{model})"
),
+1 -3
View File
@@ -349,9 +349,7 @@ Validate this fix."""
for word in ["valid", "correct", "resolves", "fixes"]
)
except Exception as exc: # pragma: no cover - defensive
logger.warning(
"LLM validation failed, treating fix as invalid: %s", exc
)
logger.warning("LLM validation failed, treating fix as invalid: %s", exc)
is_valid = False
updates: dict[str, Any] = {"fix_validated": is_valid}