690619:0846 239 #02
CI / CD Pipeline / build (push) Failing after 4m49s
CI / CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
2026-06-19 08:46:51 +07:00
parent 78e61fd300
commit 64831aba7f
4 changed files with 15 additions and 8 deletions
@@ -40,4 +40,6 @@ def get_vram_headroom() -> VramHeadroom:
return VramHeadroom(total_vram_mb, used_mb, available_mb, True)
except Exception as e:
logger.warning(f"Failed to query Ollama VRAM: {str(e)}")
return VramHeadroom(total_vram_mb, total_vram_mb, 0.0, False)
# เปลี่ยนจาก pessimistic (assume all VRAM used) เป็น optimistic (assume no VRAM used)
# เพื่อป้องกัน false positive OOM Guard เมื่อ query ล้มเหลวแต่ไม่มี model load จริง
return VramHeadroom(total_vram_mb, 0.0, total_vram_mb, False)