main
Deploy Iddaai Backend / build-and-deploy (push) Failing after 2m6s

This commit is contained in:
2026-05-12 02:43:02 +03:00
parent f8599bdb9a
commit b6d64b59bf
35 changed files with 1400 additions and 630 deletions
+1 -1
View File
@@ -1955,7 +1955,7 @@ class V26ShadowEngine:
def _pick_from_probs(probs: Dict[str, float]) -> Tuple[str, float]:
if not probs:
return "", 0.0
pick = max(probs, key=probs.get)
pick = max(probs, key=probs.__getitem__)
return pick, float(probs[pick])
@staticmethod