From 69fcd7601a84e490997e4309e48434f6cb4b6e78 Mon Sep 17 00:00:00 2001 From: latenighthackathon Date: Fri, 3 Apr 2026 13:27:33 -0500 Subject: [PATCH] fix(policy): replace deprecated HuggingFace inference endpoint in preset MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit api-inference.huggingface.co returns HTTP 410 Gone — HuggingFace migrated their Inference Providers API to router.huggingface.co. Sandbox agents using the HuggingFace preset for inference would have their requests routed to a dead endpoint. Closes #1453 Signed-off-by: latenighthackathon --- nemoclaw-blueprint/policies/presets/huggingface.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nemoclaw-blueprint/policies/presets/huggingface.yaml b/nemoclaw-blueprint/policies/presets/huggingface.yaml index 6462e238bca..ef9a7b72422 100644 --- a/nemoclaw-blueprint/policies/presets/huggingface.yaml +++ b/nemoclaw-blueprint/policies/presets/huggingface.yaml @@ -24,7 +24,7 @@ network_policies: tls: terminate rules: - allow: { method: GET, path: "/**" } - - host: api-inference.huggingface.co + - host: router.huggingface.co port: 443 protocol: rest enforcement: enforce