From 301fe18909a09ab725508c1786e53faf80c23293 Mon Sep 17 00:00:00 2001 From: joshavant <830519+joshavant@users.noreply.github.com> Date: Sat, 21 Feb 2026 13:42:03 -0800 Subject: [PATCH] Agents: inject pi auth storage from runtime profiles --- src/agents/pi-model-discovery.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/agents/pi-model-discovery.ts b/src/agents/pi-model-discovery.ts index 2f42b83fd6f..67f4aa8959b 100644 --- a/src/agents/pi-model-discovery.ts +++ b/src/agents/pi-model-discovery.ts @@ -8,7 +8,6 @@ import { ensureAuthProfileStore } from "./auth-profiles.js"; import { resolvePiCredentialMapFromStore, type PiCredentialMap } from "./pi-auth-credentials.js"; export { AuthStorage, ModelRegistry } from "@mariozechner/pi-coding-agent"; - function createAuthStorage(AuthStorageLike: unknown, path: string, creds: PiCredentialMap) { const withInMemory = AuthStorageLike as { inMemory?: (data?: unknown) => unknown }; if (typeof withInMemory.inMemory === "function") {