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", ); }