From 0c363443bbcd818c9b3bbc63c90d3d99105abe34 Mon Sep 17 00:00:00 2001 From: rain Date: Fri, 21 Aug 2026 17:29:47 -0400 Subject: [PATCH] llama-swap: require LLAMA_SWAP_API_KEY auth --- dot_pi/agent/extensions/llama-swap.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dot_pi/agent/extensions/llama-swap.ts b/dot_pi/agent/extensions/llama-swap.ts index f2a620a..924aa9c 100644 --- a/dot_pi/agent/extensions/llama-swap.ts +++ b/dot_pi/agent/extensions/llama-swap.ts @@ -357,7 +357,7 @@ export default async function (pi: ExtensionAPI) { "byte.llama", "byte.llama (byte.local GPU)", HOST.startsWith("byte") ? "http://localhost:9292/v1" : "http://byte.local:9292/v1", - "none", + "LLAMA_SWAP_API_KEY", ); // miche.llama — miche.local GPU (localhost when running on miche itself) @@ -366,6 +366,6 @@ export default async function (pi: ExtensionAPI) { "miche.llama", "miche.llama (miche.local GPU)", HOST.startsWith("miche") ? "http://localhost:9292/v1" : "http://miche.local:9292/v1", - "none", + "LLAMA_SWAP_API_KEY", ); }