1
0

Merge pull request '[loop-cycle-8] fix: replace 59 bare except clauses with proper logging (#25)' (#99) from fix/bare-except-clauses into main

This commit is contained in:
2026-03-14 19:08:40 -04:00
31 changed files with 131 additions and 70 deletions

View File

@@ -393,7 +393,8 @@ def check_ollama_model_available(model_name: str) -> bool:
model_name == m or model_name == m.split(":")[0] or m.startswith(model_name)
for m in models
)
except Exception:
except Exception as exc:
_startup_logger.debug("Ollama model check failed: %s", exc)
return False