From 41926838eac185a2f01ba4b33038d40ee75aa5a7 Mon Sep 17 00:00:00 2001 From: Koosha Paridehpour Date: Thu, 26 Feb 2026 11:53:48 -0700 Subject: [PATCH] fix(auth): use internal codex auth packages in sdk login flow Co-authored-by: Codex --- sdk/auth/codex.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/auth/codex.go b/sdk/auth/codex.go index cdf99182fa..7b274233a6 100644 --- a/sdk/auth/codex.go +++ b/sdk/auth/codex.go @@ -11,8 +11,8 @@ import ( "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/browser" // legacy client removed "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" + "github.com/router-for-me/CLIProxyAPI/v6/internal/util" coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" )