diff --git a/.worktrees/config/m/config-build/active/cliproxyctl/main.go b/.worktrees/config/m/config-build/active/cliproxyctl/main.go index 1f378836f2..3c72d1b18c 100644 --- a/.worktrees/config/m/config-build/active/cliproxyctl/main.go +++ b/.worktrees/config/m/config-build/active/cliproxyctl/main.go @@ -12,8 +12,8 @@ import ( "strings" "time" - cliproxycmd "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/cmd" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + cliproxycmd "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/cmd" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) const responseSchemaVersion = "cliproxyctl.response.v1" diff --git a/.worktrees/config/m/config-build/active/cliproxyctl/main_test.go b/.worktrees/config/m/config-build/active/cliproxyctl/main_test.go index 6ab7ce9920..9fe3fef559 100644 --- a/.worktrees/config/m/config-build/active/cliproxyctl/main_test.go +++ b/.worktrees/config/m/config-build/active/cliproxyctl/main_test.go @@ -7,8 +7,8 @@ import ( "testing" "time" - cliproxycmd "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/cmd" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + cliproxycmd "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/cmd" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestRunSetupJSONResponseShape(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/cmd/cliproxyctl/main.go b/.worktrees/config/m/config-build/active/cmd/cliproxyctl/main.go index 93e187cb50..e761259092 100644 --- a/.worktrees/config/m/config-build/active/cmd/cliproxyctl/main.go +++ b/.worktrees/config/m/config-build/active/cmd/cliproxyctl/main.go @@ -15,8 +15,8 @@ import ( "syscall" "time" - cliproxycmd "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/cmd" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + cliproxycmd "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/cmd" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) const responseSchemaVersion = "cliproxyctl.response.v1" diff --git a/.worktrees/config/m/config-build/active/cmd/cliproxyctl/main_test.go b/.worktrees/config/m/config-build/active/cmd/cliproxyctl/main_test.go index 210b750fdd..706b5862b5 100644 --- a/.worktrees/config/m/config-build/active/cmd/cliproxyctl/main_test.go +++ b/.worktrees/config/m/config-build/active/cmd/cliproxyctl/main_test.go @@ -11,8 +11,8 @@ import ( "testing" "time" - cliproxycmd "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/cmd" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + cliproxycmd "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/cmd" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestRunSetupJSONResponseShape(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/cmd/codegen/main.go b/.worktrees/config/m/config-build/active/cmd/codegen/main.go index 57d1ce26ca..93373a5e19 100644 --- a/.worktrees/config/m/config-build/active/cmd/codegen/main.go +++ b/.worktrees/config/m/config-build/active/cmd/codegen/main.go @@ -27,7 +27,7 @@ type OpenAICompatibilityModel struct { Alias string `json:"alias"` } -const configTemplate = `// Code generated by github.com/router-for-me/CLIProxyAPI/v6/cmd/codegen; DO NOT EDIT. +const configTemplate = `// Code generated by github.com/kooshapari/cliproxyapi-plusplus/v6/cmd/codegen; DO NOT EDIT. package config import "strings" @@ -68,11 +68,11 @@ func (cfg *Config) SanitizeGeneratedProviders() { } ` -const synthTemplate = `// Code generated by github.com/router-for-me/CLIProxyAPI/v6/cmd/codegen; DO NOT EDIT. +const synthTemplate = `// Code generated by github.com/kooshapari/cliproxyapi-plusplus/v6/cmd/codegen; DO NOT EDIT. package synthesizer import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) // getDedicatedProviderEntries returns the config entries for a dedicated provider. @@ -89,7 +89,7 @@ func (s *ConfigSynthesizer) getDedicatedProviderEntries(p config.ProviderSpec, c } ` -const registryTemplate = `// Code generated by github.com/router-for-me/CLIProxyAPI/v6/cmd/codegen; DO NOT EDIT. +const registryTemplate = `// Code generated by github.com/kooshapari/cliproxyapi-plusplus/v6/cmd/codegen; DO NOT EDIT. package config // AllProviders defines the registry of all supported LLM providers. @@ -118,12 +118,12 @@ var AllProviders = []ProviderSpec{ } ` -const diffTemplate = `// Code generated by github.com/router-for-me/CLIProxyAPI/v6/cmd/codegen; DO NOT EDIT. +const diffTemplate = `// Code generated by github.com/kooshapari/cliproxyapi-plusplus/v6/cmd/codegen; DO NOT EDIT. package diff import ( "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) // BuildConfigChangeDetailsGeneratedProviders computes changes for generated dedicated providers. diff --git a/.worktrees/config/m/config-build/active/cmd/server/config_validate.go b/.worktrees/config/m/config-build/active/cmd/server/config_validate.go index bbedd4f683..18bf59b78b 100644 --- a/.worktrees/config/m/config-build/active/cmd/server/config_validate.go +++ b/.worktrees/config/m/config-build/active/cmd/server/config_validate.go @@ -6,7 +6,7 @@ import ( "io" "os" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" "gopkg.in/yaml.v3" ) diff --git a/.worktrees/config/m/config-build/active/cmd/server/main.go b/.worktrees/config/m/config-build/active/cmd/server/main.go index 2ef8c33913..10b20f5b03 100644 --- a/.worktrees/config/m/config-build/active/cmd/server/main.go +++ b/.worktrees/config/m/config-build/active/cmd/server/main.go @@ -17,21 +17,21 @@ import ( "time" "github.com/joho/godotenv" - configaccess "github.com/router-for-me/CLIProxyAPI/v6/internal/access/config_access" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/kiro" - "github.com/router-for-me/CLIProxyAPI/v6/internal/buildinfo" - "github.com/router-for-me/CLIProxyAPI/v6/internal/cmd" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v6/internal/managementasset" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v6/internal/store" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator" - "github.com/router-for-me/CLIProxyAPI/v6/internal/tui" - "github.com/router-for-me/CLIProxyAPI/v6/internal/usage" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + configaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/access/config_access" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/kiro" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/buildinfo" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/cmd" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/managementasset" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/store" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/tui" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/examples/custom-provider/main.go b/.worktrees/config/m/config-build/active/examples/custom-provider/main.go index 7c611f9eb3..b584352998 100644 --- a/.worktrees/config/m/config-build/active/examples/custom-provider/main.go +++ b/.worktrees/config/m/config-build/active/examples/custom-provider/main.go @@ -24,14 +24,14 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - clipexec "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/logging" - sdktr "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + clipexec "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/logging" + sdktr "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" ) const ( diff --git a/.worktrees/config/m/config-build/active/examples/http-request/main.go b/.worktrees/config/m/config-build/active/examples/http-request/main.go index a667a9ca0c..a55d983646 100644 --- a/.worktrees/config/m/config-build/active/examples/http-request/main.go +++ b/.worktrees/config/m/config-build/active/examples/http-request/main.go @@ -16,8 +16,8 @@ import ( "strings" "time" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - clipexec "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + clipexec "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/examples/translator/main.go b/.worktrees/config/m/config-build/active/examples/translator/main.go index 88f142a3d2..4345f52a05 100644 --- a/.worktrees/config/m/config-build/active/examples/translator/main.go +++ b/.worktrees/config/m/config-build/active/examples/translator/main.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" - _ "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator/builtin" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator/builtin" ) func main() { diff --git a/.worktrees/config/m/config-build/active/internal/access/config_access/provider.go b/.worktrees/config/m/config-build/active/internal/access/config_access/provider.go index 84e8abcb0e..4a7332e39f 100644 --- a/.worktrees/config/m/config-build/active/internal/access/config_access/provider.go +++ b/.worktrees/config/m/config-build/active/internal/access/config_access/provider.go @@ -5,8 +5,8 @@ import ( "net/http" "strings" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v6/sdk/access" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + sdkaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/access" + sdkconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" ) // Register ensures the config-access provider is available to the access manager. diff --git a/.worktrees/config/m/config-build/active/internal/access/reconcile.go b/.worktrees/config/m/config-build/active/internal/access/reconcile.go index 36601f9998..61ee1e9f46 100644 --- a/.worktrees/config/m/config-build/active/internal/access/reconcile.go +++ b/.worktrees/config/m/config-build/active/internal/access/reconcile.go @@ -6,9 +6,9 @@ import ( "sort" "strings" - configaccess "github.com/router-for-me/CLIProxyAPI/v6/internal/access/config_access" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v6/sdk/access" + configaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/access/config_access" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + sdkaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/access" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/api/handlers/management/api_tools.go b/.worktrees/config/m/config-build/active/internal/api/handlers/management/api_tools.go index 48774343e9..0fabb05e60 100644 --- a/.worktrees/config/m/config-build/active/internal/api/handlers/management/api_tools.go +++ b/.worktrees/config/m/config-build/active/internal/api/handlers/management/api_tools.go @@ -20,8 +20,8 @@ import ( "golang.org/x/oauth2" "golang.org/x/oauth2/google" - "github.com/router-for-me/CLIProxyAPI/v6/internal/runtime/geminicli" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/runtime/geminicli" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) const defaultAPICallTimeout = 60 * time.Second diff --git a/.worktrees/config/m/config-build/active/internal/api/handlers/management/api_tools_test.go b/.worktrees/config/m/config-build/active/internal/api/handlers/management/api_tools_test.go index fecbee9cb8..152eb64968 100644 --- a/.worktrees/config/m/config-build/active/internal/api/handlers/management/api_tools_test.go +++ b/.worktrees/config/m/config-build/active/internal/api/handlers/management/api_tools_test.go @@ -12,7 +12,7 @@ import ( "testing" "time" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) type memoryAuthStore struct { diff --git a/.worktrees/config/m/config-build/active/internal/api/handlers/management/auth_files.go b/.worktrees/config/m/config-build/active/internal/api/handlers/management/auth_files.go index bd1338a279..d1eb2e5624 100644 --- a/.worktrees/config/m/config-build/active/internal/api/handlers/management/auth_files.go +++ b/.worktrees/config/m/config-build/active/internal/api/handlers/management/auth_files.go @@ -23,22 +23,22 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/antigravity" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/claude" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/copilot" - geminiAuth "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/gemini" - iflowauth "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/iflow" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/kilo" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/kimi" - kiroauth "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/kiro" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/qwen" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/antigravity" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/claude" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/codex" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/copilot" + geminiAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/gemini" + iflowauth "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/iflow" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/kilo" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/kimi" + kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/kiro" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/qwen" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "golang.org/x/oauth2" @@ -1917,7 +1917,7 @@ func (h *Handler) RequestGitHubToken(c *gin.Context) { state := fmt.Sprintf("gh-%d", time.Now().UnixNano()) // Initialize Copilot auth service - // We need to import "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/copilot" first if not present + // We need to import "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/copilot" first if not present // Assuming copilot package is imported as "copilot" deviceClient := copilot.NewDeviceFlowClient(h.cfg) diff --git a/.worktrees/config/m/config-build/active/internal/api/handlers/management/config_basic.go b/.worktrees/config/m/config-build/active/internal/api/handlers/management/config_basic.go index 72f73d32ca..e8b568bb73 100644 --- a/.worktrees/config/m/config-build/active/internal/api/handlers/management/config_basic.go +++ b/.worktrees/config/m/config-build/active/internal/api/handlers/management/config_basic.go @@ -11,9 +11,9 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + sdkconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" log "github.com/sirupsen/logrus" "gopkg.in/yaml.v3" ) diff --git a/.worktrees/config/m/config-build/active/internal/api/handlers/management/config_lists.go b/.worktrees/config/m/config-build/active/internal/api/handlers/management/config_lists.go index 0153a38129..31a72f3b9e 100644 --- a/.worktrees/config/m/config-build/active/internal/api/handlers/management/config_lists.go +++ b/.worktrees/config/m/config-build/active/internal/api/handlers/management/config_lists.go @@ -6,7 +6,7 @@ import ( "strings" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) // Generic helpers for list[string] diff --git a/.worktrees/config/m/config-build/active/internal/api/handlers/management/handler.go b/.worktrees/config/m/config-build/active/internal/api/handlers/management/handler.go index 613c9841d0..099e50ab3d 100644 --- a/.worktrees/config/m/config-build/active/internal/api/handlers/management/handler.go +++ b/.worktrees/config/m/config-build/active/internal/api/handlers/management/handler.go @@ -13,11 +13,11 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/buildinfo" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/usage" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/buildinfo" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/usage" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" "golang.org/x/crypto/bcrypt" ) diff --git a/.worktrees/config/m/config-build/active/internal/api/handlers/management/logs.go b/.worktrees/config/m/config-build/active/internal/api/handlers/management/logs.go index b64cd61938..880b1d1aa7 100644 --- a/.worktrees/config/m/config-build/active/internal/api/handlers/management/logs.go +++ b/.worktrees/config/m/config-build/active/internal/api/handlers/management/logs.go @@ -13,7 +13,7 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/logging" ) const ( diff --git a/.worktrees/config/m/config-build/active/internal/api/handlers/management/model_definitions.go b/.worktrees/config/m/config-build/active/internal/api/handlers/management/model_definitions.go index 85ff314bf4..eb80b5f96a 100644 --- a/.worktrees/config/m/config-build/active/internal/api/handlers/management/model_definitions.go +++ b/.worktrees/config/m/config-build/active/internal/api/handlers/management/model_definitions.go @@ -5,7 +5,7 @@ import ( "strings" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" ) // GetStaticModelDefinitions returns static model metadata for a given channel. diff --git a/.worktrees/config/m/config-build/active/internal/api/handlers/management/usage.go b/.worktrees/config/m/config-build/active/internal/api/handlers/management/usage.go index 5f79408963..8da85f4cc1 100644 --- a/.worktrees/config/m/config-build/active/internal/api/handlers/management/usage.go +++ b/.worktrees/config/m/config-build/active/internal/api/handlers/management/usage.go @@ -6,7 +6,7 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/usage" ) type usageExportPayload struct { diff --git a/.worktrees/config/m/config-build/active/internal/api/handlers/management/vertex_import.go b/.worktrees/config/m/config-build/active/internal/api/handlers/management/vertex_import.go index bad066a270..b603234a1b 100644 --- a/.worktrees/config/m/config-build/active/internal/api/handlers/management/vertex_import.go +++ b/.worktrees/config/m/config-build/active/internal/api/handlers/management/vertex_import.go @@ -9,8 +9,8 @@ import ( "strings" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/vertex" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/vertex" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // ImportVertexCredential handles uploading a Vertex service account JSON and saving it as an auth record. diff --git a/.worktrees/config/m/config-build/active/internal/api/middleware/request_logging.go b/.worktrees/config/m/config-build/active/internal/api/middleware/request_logging.go index b57dd8aa42..57715bf2ac 100644 --- a/.worktrees/config/m/config-build/active/internal/api/middleware/request_logging.go +++ b/.worktrees/config/m/config-build/active/internal/api/middleware/request_logging.go @@ -11,8 +11,8 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" ) const maxErrorOnlyCapturedRequestBodyBytes int64 = 1 << 20 // 1 MiB diff --git a/.worktrees/config/m/config-build/active/internal/api/middleware/response_writer.go b/.worktrees/config/m/config-build/active/internal/api/middleware/response_writer.go index 363278ab35..6a04f40257 100644 --- a/.worktrees/config/m/config-build/active/internal/api/middleware/response_writer.go +++ b/.worktrees/config/m/config-build/active/internal/api/middleware/response_writer.go @@ -10,8 +10,8 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/logging" ) const requestBodyOverrideContextKey = "REQUEST_BODY_OVERRIDE" diff --git a/.worktrees/config/m/config-build/active/internal/api/modules/amp/amp.go b/.worktrees/config/m/config-build/active/internal/api/modules/amp/amp.go index a12733e2a1..7009dea1a5 100644 --- a/.worktrees/config/m/config-build/active/internal/api/modules/amp/amp.go +++ b/.worktrees/config/m/config-build/active/internal/api/modules/amp/amp.go @@ -9,9 +9,9 @@ import ( "sync" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/api/modules" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v6/sdk/access" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/api/modules" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + sdkaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/access" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/api/modules/amp/amp_test.go b/.worktrees/config/m/config-build/active/internal/api/modules/amp/amp_test.go index 430c4b62a7..5d2b76dcd4 100644 --- a/.worktrees/config/m/config-build/active/internal/api/modules/amp/amp_test.go +++ b/.worktrees/config/m/config-build/active/internal/api/modules/amp/amp_test.go @@ -9,10 +9,10 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/api/modules" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v6/sdk/access" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/api/modules" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + sdkaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/access" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" ) func TestAmpModule_Name(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/internal/api/modules/amp/fallback_handlers.go b/.worktrees/config/m/config-build/active/internal/api/modules/amp/fallback_handlers.go index 7d7f7f5f28..6886908325 100644 --- a/.worktrees/config/m/config-build/active/internal/api/modules/amp/fallback_handlers.go +++ b/.worktrees/config/m/config-build/active/internal/api/modules/amp/fallback_handlers.go @@ -8,8 +8,8 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/api/modules/amp/fallback_handlers_test.go b/.worktrees/config/m/config-build/active/internal/api/modules/amp/fallback_handlers_test.go index a687fd116b..f139ae939a 100644 --- a/.worktrees/config/m/config-build/active/internal/api/modules/amp/fallback_handlers_test.go +++ b/.worktrees/config/m/config-build/active/internal/api/modules/amp/fallback_handlers_test.go @@ -9,8 +9,8 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" ) func TestFallbackHandler_ModelMapping_PreservesThinkingSuffixAndRewritesResponse(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/internal/api/modules/amp/model_mapping.go b/.worktrees/config/m/config-build/active/internal/api/modules/amp/model_mapping.go index 4159a2b576..b92e5b9a8d 100644 --- a/.worktrees/config/m/config-build/active/internal/api/modules/amp/model_mapping.go +++ b/.worktrees/config/m/config-build/active/internal/api/modules/amp/model_mapping.go @@ -7,9 +7,9 @@ import ( "strings" "sync" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/api/modules/amp/model_mapping_test.go b/.worktrees/config/m/config-build/active/internal/api/modules/amp/model_mapping_test.go index 53165d22c3..dde9e27e9b 100644 --- a/.worktrees/config/m/config-build/active/internal/api/modules/amp/model_mapping_test.go +++ b/.worktrees/config/m/config-build/active/internal/api/modules/amp/model_mapping_test.go @@ -3,8 +3,8 @@ package amp import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" ) func TestNewModelMapper(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/internal/api/modules/amp/proxy_test.go b/.worktrees/config/m/config-build/active/internal/api/modules/amp/proxy_test.go index 32f5d8605b..27678210fc 100644 --- a/.worktrees/config/m/config-build/active/internal/api/modules/amp/proxy_test.go +++ b/.worktrees/config/m/config-build/active/internal/api/modules/amp/proxy_test.go @@ -11,7 +11,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) // Helper: compress data with gzip diff --git a/.worktrees/config/m/config-build/active/internal/api/modules/amp/routes.go b/.worktrees/config/m/config-build/active/internal/api/modules/amp/routes.go index 456a50ac12..e260867ad4 100644 --- a/.worktrees/config/m/config-build/active/internal/api/modules/amp/routes.go +++ b/.worktrees/config/m/config-build/active/internal/api/modules/amp/routes.go @@ -9,11 +9,11 @@ import ( "strings" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers/claude" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers/gemini" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers/openai" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers/claude" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers/gemini" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers/openai" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/api/modules/amp/routes_test.go b/.worktrees/config/m/config-build/active/internal/api/modules/amp/routes_test.go index bae890aec4..9e77acea1a 100644 --- a/.worktrees/config/m/config-build/active/internal/api/modules/amp/routes_test.go +++ b/.worktrees/config/m/config-build/active/internal/api/modules/amp/routes_test.go @@ -6,7 +6,7 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" ) func TestRegisterManagementRoutes(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/internal/api/modules/amp/secret.go b/.worktrees/config/m/config-build/active/internal/api/modules/amp/secret.go index f91c72ba9c..2dac646c19 100644 --- a/.worktrees/config/m/config-build/active/internal/api/modules/amp/secret.go +++ b/.worktrees/config/m/config-build/active/internal/api/modules/amp/secret.go @@ -10,7 +10,7 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/api/modules/amp/secret_test.go b/.worktrees/config/m/config-build/active/internal/api/modules/amp/secret_test.go index 6a6f6ba265..037597abbf 100644 --- a/.worktrees/config/m/config-build/active/internal/api/modules/amp/secret_test.go +++ b/.worktrees/config/m/config-build/active/internal/api/modules/amp/secret_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" log "github.com/sirupsen/logrus" "github.com/sirupsen/logrus/hooks/test" ) diff --git a/.worktrees/config/m/config-build/active/internal/api/modules/modules.go b/.worktrees/config/m/config-build/active/internal/api/modules/modules.go index 8c5447d96d..f5163b7a30 100644 --- a/.worktrees/config/m/config-build/active/internal/api/modules/modules.go +++ b/.worktrees/config/m/config-build/active/internal/api/modules/modules.go @@ -6,8 +6,8 @@ import ( "fmt" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" ) // Context encapsulates the dependencies exposed to routing modules during diff --git a/.worktrees/config/m/config-build/active/internal/api/server.go b/.worktrees/config/m/config-build/active/internal/api/server.go index 98041b8be4..277fc86d23 100644 --- a/.worktrees/config/m/config-build/active/internal/api/server.go +++ b/.worktrees/config/m/config-build/active/internal/api/server.go @@ -19,24 +19,24 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/access" - managementHandlers "github.com/router-for-me/CLIProxyAPI/v6/internal/api/handlers/management" - "github.com/router-for-me/CLIProxyAPI/v6/internal/api/middleware" - "github.com/router-for-me/CLIProxyAPI/v6/internal/api/modules" - ampmodule "github.com/router-for-me/CLIProxyAPI/v6/internal/api/modules/amp" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/kiro" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v6/internal/managementasset" - "github.com/router-for-me/CLIProxyAPI/v6/internal/usage" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v6/sdk/access" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers/claude" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers/gemini" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers/openai" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/access" + managementHandlers "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/api/handlers/management" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/api/middleware" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/api/modules" + ampmodule "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/api/modules/amp" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/kiro" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/managementasset" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + sdkaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/access" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers/claude" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers/gemini" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers/openai" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" "gopkg.in/yaml.v3" ) diff --git a/.worktrees/config/m/config-build/active/internal/api/server_test.go b/.worktrees/config/m/config-build/active/internal/api/server_test.go index 066532106f..e8f7894757 100644 --- a/.worktrees/config/m/config-build/active/internal/api/server_test.go +++ b/.worktrees/config/m/config-build/active/internal/api/server_test.go @@ -9,10 +9,10 @@ import ( "testing" gin "github.com/gin-gonic/gin" - proxyconfig "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v6/sdk/access" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + proxyconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + sdkaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/access" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + sdkconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" ) func newTestServer(t *testing.T) *Server { diff --git a/.worktrees/config/m/config-build/active/internal/auth/antigravity/auth.go b/.worktrees/config/m/config-build/active/internal/auth/antigravity/auth.go index 449f413fc1..2866bfa196 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/antigravity/auth.go +++ b/.worktrees/config/m/config-build/active/internal/auth/antigravity/auth.go @@ -11,8 +11,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/claude/anthropic_auth.go b/.worktrees/config/m/config-build/active/internal/auth/claude/anthropic_auth.go index 2853e418e6..0cd26b99d9 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/claude/anthropic_auth.go +++ b/.worktrees/config/m/config-build/active/internal/auth/claude/anthropic_auth.go @@ -13,7 +13,7 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/claude/token.go b/.worktrees/config/m/config-build/active/internal/auth/claude/token.go index cda10d589b..e986f9c00a 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/claude/token.go +++ b/.worktrees/config/m/config-build/active/internal/auth/claude/token.go @@ -9,7 +9,7 @@ import ( "os" "path/filepath" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" ) // ClaudeTokenStorage stores OAuth2 token information for Anthropic Claude API authentication. diff --git a/.worktrees/config/m/config-build/active/internal/auth/claude/utls_transport.go b/.worktrees/config/m/config-build/active/internal/auth/claude/utls_transport.go index 2cb840b245..d7306cb101 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/claude/utls_transport.go +++ b/.worktrees/config/m/config-build/active/internal/auth/claude/utls_transport.go @@ -9,7 +9,7 @@ import ( "sync" tls "github.com/refraction-networking/utls" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" log "github.com/sirupsen/logrus" "golang.org/x/net/http2" "golang.org/x/net/proxy" diff --git a/.worktrees/config/m/config-build/active/internal/auth/codex/openai_auth.go b/.worktrees/config/m/config-build/active/internal/auth/codex/openai_auth.go index 89deeadb6e..3c0bebc796 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/codex/openai_auth.go +++ b/.worktrees/config/m/config-build/active/internal/auth/codex/openai_auth.go @@ -14,8 +14,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/codex/token.go b/.worktrees/config/m/config-build/active/internal/auth/codex/token.go index e93fc41784..e915a26862 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/codex/token.go +++ b/.worktrees/config/m/config-build/active/internal/auth/codex/token.go @@ -9,7 +9,7 @@ import ( "os" "path/filepath" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" ) // CodexTokenStorage stores OAuth2 token information for OpenAI Codex API authentication. diff --git a/.worktrees/config/m/config-build/active/internal/auth/copilot/copilot_auth.go b/.worktrees/config/m/config-build/active/internal/auth/copilot/copilot_auth.go index c40e7082b8..15b41c075b 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/copilot/copilot_auth.go +++ b/.worktrees/config/m/config-build/active/internal/auth/copilot/copilot_auth.go @@ -10,8 +10,8 @@ import ( "net/http" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/copilot/oauth.go b/.worktrees/config/m/config-build/active/internal/auth/copilot/oauth.go index d3f46aaa10..8f97c9cd91 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/copilot/oauth.go +++ b/.worktrees/config/m/config-build/active/internal/auth/copilot/oauth.go @@ -11,8 +11,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/copilot/token.go b/.worktrees/config/m/config-build/active/internal/auth/copilot/token.go index 4e5eed6c45..ffd9a8de5b 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/copilot/token.go +++ b/.worktrees/config/m/config-build/active/internal/auth/copilot/token.go @@ -9,7 +9,7 @@ import ( "os" "path/filepath" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" ) // CopilotTokenStorage stores OAuth2 token information for GitHub Copilot API authentication. diff --git a/.worktrees/config/m/config-build/active/internal/auth/gemini/gemini_auth.go b/.worktrees/config/m/config-build/active/internal/auth/gemini/gemini_auth.go index 6406a0e156..dd5a53d5bc 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/gemini/gemini_auth.go +++ b/.worktrees/config/m/config-build/active/internal/auth/gemini/gemini_auth.go @@ -15,11 +15,11 @@ import ( "net/url" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v6/internal/browser" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/codex" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/browser" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "golang.org/x/net/proxy" diff --git a/.worktrees/config/m/config-build/active/internal/auth/gemini/gemini_token.go b/.worktrees/config/m/config-build/active/internal/auth/gemini/gemini_token.go index 0ec7da1722..9e4519f591 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/gemini/gemini_token.go +++ b/.worktrees/config/m/config-build/active/internal/auth/gemini/gemini_token.go @@ -10,7 +10,7 @@ import ( "path/filepath" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/iflow/iflow_auth.go b/.worktrees/config/m/config-build/active/internal/auth/iflow/iflow_auth.go index 279d7339d3..83430f5995 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/iflow/iflow_auth.go +++ b/.worktrees/config/m/config-build/active/internal/auth/iflow/iflow_auth.go @@ -13,8 +13,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/iflow/iflow_token.go b/.worktrees/config/m/config-build/active/internal/auth/iflow/iflow_token.go index 6d2beb3922..4ff1984b68 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/iflow/iflow_token.go +++ b/.worktrees/config/m/config-build/active/internal/auth/iflow/iflow_token.go @@ -6,7 +6,7 @@ import ( "os" "path/filepath" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" ) // IFlowTokenStorage persists iFlow OAuth credentials alongside the derived API key. diff --git a/.worktrees/config/m/config-build/active/internal/auth/kilo/kilo_token.go b/.worktrees/config/m/config-build/active/internal/auth/kilo/kilo_token.go index 5d1646e7d5..363ac67691 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/kilo/kilo_token.go +++ b/.worktrees/config/m/config-build/active/internal/auth/kilo/kilo_token.go @@ -8,7 +8,7 @@ import ( "os" "path/filepath" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/kimi/kimi.go b/.worktrees/config/m/config-build/active/internal/auth/kimi/kimi.go index 8427a057e8..8799965680 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/kimi/kimi.go +++ b/.worktrees/config/m/config-build/active/internal/auth/kimi/kimi.go @@ -15,8 +15,8 @@ import ( "time" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/kimi/token.go b/.worktrees/config/m/config-build/active/internal/auth/kimi/token.go index d4d06b6417..5f185b37e1 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/kimi/token.go +++ b/.worktrees/config/m/config-build/active/internal/auth/kimi/token.go @@ -10,7 +10,7 @@ import ( "path/filepath" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" ) // KimiTokenStorage stores OAuth2 token information for Kimi API authentication. diff --git a/.worktrees/config/m/config-build/active/internal/auth/kiro/aws_auth.go b/.worktrees/config/m/config-build/active/internal/auth/kiro/aws_auth.go index 69ae253914..aa7a4f72b6 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/kiro/aws_auth.go +++ b/.worktrees/config/m/config-build/active/internal/auth/kiro/aws_auth.go @@ -13,8 +13,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/kiro/background_refresh.go b/.worktrees/config/m/config-build/active/internal/auth/kiro/background_refresh.go index d64c747508..7638336b89 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/kiro/background_refresh.go +++ b/.worktrees/config/m/config-build/active/internal/auth/kiro/background_refresh.go @@ -7,7 +7,7 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" "golang.org/x/sync/semaphore" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/kiro/codewhisperer_client.go b/.worktrees/config/m/config-build/active/internal/auth/kiro/codewhisperer_client.go index 0a7392e827..cac750b774 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/kiro/codewhisperer_client.go +++ b/.worktrees/config/m/config-build/active/internal/auth/kiro/codewhisperer_client.go @@ -10,8 +10,8 @@ import ( "time" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/kiro/oauth.go b/.worktrees/config/m/config-build/active/internal/auth/kiro/oauth.go index a286cf4229..2b20f3db01 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/kiro/oauth.go +++ b/.worktrees/config/m/config-build/active/internal/auth/kiro/oauth.go @@ -15,8 +15,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/kiro/oauth_web.go b/.worktrees/config/m/config-build/active/internal/auth/kiro/oauth_web.go index 88fba6726c..670899e7c2 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/kiro/oauth_web.go +++ b/.worktrees/config/m/config-build/active/internal/auth/kiro/oauth_web.go @@ -16,8 +16,8 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/kiro/refresh_manager.go b/.worktrees/config/m/config-build/active/internal/auth/kiro/refresh_manager.go index 5330c5e1ad..e14c1e6214 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/kiro/refresh_manager.go +++ b/.worktrees/config/m/config-build/active/internal/auth/kiro/refresh_manager.go @@ -5,8 +5,8 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/kiro/social_auth.go b/.worktrees/config/m/config-build/active/internal/auth/kiro/social_auth.go index 65f31ba46f..605d130303 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/kiro/social_auth.go +++ b/.worktrees/config/m/config-build/active/internal/auth/kiro/social_auth.go @@ -20,9 +20,9 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/browser" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/browser" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" "golang.org/x/term" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/kiro/sso_oidc.go b/.worktrees/config/m/config-build/active/internal/auth/kiro/sso_oidc.go index 60fb887190..46463b53fd 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/kiro/sso_oidc.go +++ b/.worktrees/config/m/config-build/active/internal/auth/kiro/sso_oidc.go @@ -18,9 +18,9 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/browser" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/browser" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/kiro/usage_checker.go b/.worktrees/config/m/config-build/active/internal/auth/kiro/usage_checker.go index 94870214b6..c2a798a7d8 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/kiro/usage_checker.go +++ b/.worktrees/config/m/config-build/active/internal/auth/kiro/usage_checker.go @@ -11,8 +11,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" ) // UsageQuotaResponse represents the API response structure for usage quota checking. diff --git a/.worktrees/config/m/config-build/active/internal/auth/qwen/qwen_auth.go b/.worktrees/config/m/config-build/active/internal/auth/qwen/qwen_auth.go index cb58b86d3a..e587e22f7c 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/qwen/qwen_auth.go +++ b/.worktrees/config/m/config-build/active/internal/auth/qwen/qwen_auth.go @@ -13,8 +13,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/auth/qwen/qwen_token.go b/.worktrees/config/m/config-build/active/internal/auth/qwen/qwen_token.go index 4a2b3a2d52..ab79a0abc4 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/qwen/qwen_token.go +++ b/.worktrees/config/m/config-build/active/internal/auth/qwen/qwen_token.go @@ -9,7 +9,7 @@ import ( "os" "path/filepath" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" ) // QwenTokenStorage stores OAuth2 token information for Alibaba Qwen API authentication. diff --git a/.worktrees/config/m/config-build/active/internal/auth/vertex/vertex_credentials.go b/.worktrees/config/m/config-build/active/internal/auth/vertex/vertex_credentials.go index 4853d34070..a0fb3085cd 100644 --- a/.worktrees/config/m/config-build/active/internal/auth/vertex/vertex_credentials.go +++ b/.worktrees/config/m/config-build/active/internal/auth/vertex/vertex_credentials.go @@ -8,7 +8,7 @@ import ( "os" "path/filepath" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/cmd/anthropic_login.go b/.worktrees/config/m/config-build/active/internal/cmd/anthropic_login.go index f7381461a6..8885a2c0ac 100644 --- a/.worktrees/config/m/config-build/active/internal/cmd/anthropic_login.go +++ b/.worktrees/config/m/config-build/active/internal/cmd/anthropic_login.go @@ -6,9 +6,9 @@ import ( "fmt" "os" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/claude" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/claude" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/cmd/antigravity_login.go b/.worktrees/config/m/config-build/active/internal/cmd/antigravity_login.go index 2efbaeee01..7d3e048791 100644 --- a/.worktrees/config/m/config-build/active/internal/cmd/antigravity_login.go +++ b/.worktrees/config/m/config-build/active/internal/cmd/antigravity_login.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/cmd/auth_manager.go b/.worktrees/config/m/config-build/active/internal/cmd/auth_manager.go index 2a3407be49..6517938346 100644 --- a/.worktrees/config/m/config-build/active/internal/cmd/auth_manager.go +++ b/.worktrees/config/m/config-build/active/internal/cmd/auth_manager.go @@ -1,7 +1,7 @@ package cmd import ( - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" ) // newAuthManager creates a new authentication manager instance with all supported diff --git a/.worktrees/config/m/config-build/active/internal/cmd/github_copilot_login.go b/.worktrees/config/m/config-build/active/internal/cmd/github_copilot_login.go index 056e811f4c..0998c1f0ae 100644 --- a/.worktrees/config/m/config-build/active/internal/cmd/github_copilot_login.go +++ b/.worktrees/config/m/config-build/active/internal/cmd/github_copilot_login.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/cmd/iflow_cookie.go b/.worktrees/config/m/config-build/active/internal/cmd/iflow_cookie.go index 358b806270..1c8d3cdbaa 100644 --- a/.worktrees/config/m/config-build/active/internal/cmd/iflow_cookie.go +++ b/.worktrees/config/m/config-build/active/internal/cmd/iflow_cookie.go @@ -9,8 +9,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/iflow" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/iflow" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) // DoIFlowCookieAuth performs the iFlow cookie-based authentication. diff --git a/.worktrees/config/m/config-build/active/internal/cmd/iflow_login.go b/.worktrees/config/m/config-build/active/internal/cmd/iflow_login.go index 49e18e5b73..7e861e7e18 100644 --- a/.worktrees/config/m/config-build/active/internal/cmd/iflow_login.go +++ b/.worktrees/config/m/config-build/active/internal/cmd/iflow_login.go @@ -5,8 +5,8 @@ import ( "errors" "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/cmd/kilo_login.go b/.worktrees/config/m/config-build/active/internal/cmd/kilo_login.go index 7e9ed3b91e..991719ca85 100644 --- a/.worktrees/config/m/config-build/active/internal/cmd/kilo_login.go +++ b/.worktrees/config/m/config-build/active/internal/cmd/kilo_login.go @@ -5,8 +5,8 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" ) // DoKiloLogin handles the Kilo device flow using the shared authentication manager. diff --git a/.worktrees/config/m/config-build/active/internal/cmd/kimi_login.go b/.worktrees/config/m/config-build/active/internal/cmd/kimi_login.go index eb5f11fb37..7f279ff147 100644 --- a/.worktrees/config/m/config-build/active/internal/cmd/kimi_login.go +++ b/.worktrees/config/m/config-build/active/internal/cmd/kimi_login.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/cmd/kiro_login.go b/.worktrees/config/m/config-build/active/internal/cmd/kiro_login.go index 74d09686f4..4aff1a8cbb 100644 --- a/.worktrees/config/m/config-build/active/internal/cmd/kiro_login.go +++ b/.worktrees/config/m/config-build/active/internal/cmd/kiro_login.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/cmd/login.go b/.worktrees/config/m/config-build/active/internal/cmd/login.go index 1d8a1ae336..6b66de212f 100644 --- a/.worktrees/config/m/config-build/active/internal/cmd/login.go +++ b/.worktrees/config/m/config-build/active/internal/cmd/login.go @@ -17,11 +17,11 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/gemini" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/gemini" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/cmd/openai_login.go b/.worktrees/config/m/config-build/active/internal/cmd/openai_login.go index 783a948400..cbd58a6b35 100644 --- a/.worktrees/config/m/config-build/active/internal/cmd/openai_login.go +++ b/.worktrees/config/m/config-build/active/internal/cmd/openai_login.go @@ -6,9 +6,9 @@ import ( "fmt" "os" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/codex" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/cmd/qwen_login.go b/.worktrees/config/m/config-build/active/internal/cmd/qwen_login.go index 10179fa843..e7be307515 100644 --- a/.worktrees/config/m/config-build/active/internal/cmd/qwen_login.go +++ b/.worktrees/config/m/config-build/active/internal/cmd/qwen_login.go @@ -5,8 +5,8 @@ import ( "errors" "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/cmd/run.go b/.worktrees/config/m/config-build/active/internal/cmd/run.go index d8c4f01938..91ad69aa0d 100644 --- a/.worktrees/config/m/config-build/active/internal/cmd/run.go +++ b/.worktrees/config/m/config-build/active/internal/cmd/run.go @@ -10,9 +10,9 @@ import ( "syscall" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/api" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/api" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/cmd/vertex_import.go b/.worktrees/config/m/config-build/active/internal/cmd/vertex_import.go index 32d782d805..33e0c7abd0 100644 --- a/.worktrees/config/m/config-build/active/internal/cmd/vertex_import.go +++ b/.worktrees/config/m/config-build/active/internal/cmd/vertex_import.go @@ -9,11 +9,11 @@ import ( "os" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/vertex" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/vertex" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/config/sdk_config.go b/.worktrees/config/m/config-build/active/internal/config/sdk_config.go index 834d2aba6e..3b2027cf51 100644 --- a/.worktrees/config/m/config-build/active/internal/config/sdk_config.go +++ b/.worktrees/config/m/config-build/active/internal/config/sdk_config.go @@ -1,7 +1,7 @@ // Package config provides configuration types for the llmproxy server. package config -import sdkconfig "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" +import sdkconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" // Keep SDK types aligned with public SDK config to avoid split-type regressions. type SDKConfig = sdkconfig.SDKConfig diff --git a/.worktrees/config/m/config-build/active/internal/interfaces/types.go b/.worktrees/config/m/config-build/active/internal/interfaces/types.go index 9fb1e7f3b8..3155d73fca 100644 --- a/.worktrees/config/m/config-build/active/internal/interfaces/types.go +++ b/.worktrees/config/m/config-build/active/internal/interfaces/types.go @@ -3,7 +3,7 @@ // transformation operations, maintaining compatibility with the SDK translator package. package interfaces -import sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" +import sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" // Backwards compatible aliases for translator function types. type TranslateRequestFunc = sdktranslator.RequestTransform diff --git a/.worktrees/config/m/config-build/active/internal/logging/gin_logger.go b/.worktrees/config/m/config-build/active/internal/logging/gin_logger.go index b94d7afe6d..771b58f327 100644 --- a/.worktrees/config/m/config-build/active/internal/logging/gin_logger.go +++ b/.worktrees/config/m/config-build/active/internal/logging/gin_logger.go @@ -12,7 +12,7 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/logging/global_logger.go b/.worktrees/config/m/config-build/active/internal/logging/global_logger.go index 484ecba7ed..1340548e75 100644 --- a/.worktrees/config/m/config-build/active/internal/logging/global_logger.go +++ b/.worktrees/config/m/config-build/active/internal/logging/global_logger.go @@ -10,8 +10,8 @@ import ( "sync" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" "gopkg.in/natefinch/lumberjack.v2" ) diff --git a/.worktrees/config/m/config-build/active/internal/logging/request_logger.go b/.worktrees/config/m/config-build/active/internal/logging/request_logger.go index ad7b03c1c4..1c6e385998 100644 --- a/.worktrees/config/m/config-build/active/internal/logging/request_logger.go +++ b/.worktrees/config/m/config-build/active/internal/logging/request_logger.go @@ -21,9 +21,9 @@ import ( "github.com/klauspost/compress/zstd" log "github.com/sirupsen/logrus" - "github.com/router-for-me/CLIProxyAPI/v6/internal/buildinfo" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/buildinfo" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" ) var requestLogID atomic.Uint64 diff --git a/.worktrees/config/m/config-build/active/internal/managementasset/updater.go b/.worktrees/config/m/config-build/active/internal/managementasset/updater.go index 7284b7299c..1b96add8f0 100644 --- a/.worktrees/config/m/config-build/active/internal/managementasset/updater.go +++ b/.worktrees/config/m/config-build/active/internal/managementasset/updater.go @@ -17,9 +17,9 @@ import ( "sync/atomic" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + sdkconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" log "github.com/sirupsen/logrus" "golang.org/x/sync/singleflight" ) diff --git a/.worktrees/config/m/config-build/active/internal/registry/model_registry.go b/.worktrees/config/m/config-build/active/internal/registry/model_registry.go index 3fa2a3b5cc..80c065911a 100644 --- a/.worktrees/config/m/config-build/active/internal/registry/model_registry.go +++ b/.worktrees/config/m/config-build/active/internal/registry/model_registry.go @@ -11,7 +11,7 @@ import ( "sync" "time" - misc "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" + misc "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/aistudio_executor.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/aistudio_executor.go index b1e23860cf..81be86ec9c 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/aistudio_executor.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/aistudio_executor.go @@ -13,12 +13,12 @@ import ( "net/url" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/internal/wsrelay" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/wsrelay" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/antigravity_executor.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/antigravity_executor.go index 652cb472a0..52e4c828da 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/antigravity_executor.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/antigravity_executor.go @@ -22,14 +22,14 @@ import ( "time" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/antigravity_executor_buildrequest_test.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/antigravity_executor_buildrequest_test.go index c5cba4ee3f..084241b46c 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/antigravity_executor_buildrequest_test.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/antigravity_executor_buildrequest_test.go @@ -6,7 +6,7 @@ import ( "io" "testing" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestAntigravityBuildRequest_SanitizesGeminiToolSchema(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/claude_executor.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/claude_executor.go index 681e7b8d22..835f645683 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/claude_executor.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/claude_executor.go @@ -15,14 +15,14 @@ import ( "github.com/andybalholm/brotli" "github.com/klauspost/compress/zstd" - claudeauth "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/claude" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + claudeauth "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/claude" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/claude_executor_test.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/claude_executor_test.go index dd29ed8ad7..bbebe021d2 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/claude_executor_test.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/claude_executor_test.go @@ -8,10 +8,10 @@ import ( "net/http/httptest" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/codex_executor.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/codex_executor.go index 01de8f9707..3e9b7a7214 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/codex_executor.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/codex_executor.go @@ -10,14 +10,14 @@ import ( "strings" "time" - codexauth "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + codexauth "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/codex" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/codex_websockets_executor.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/codex_websockets_executor.go index 7c887221b9..9c0f1f612a 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/codex_websockets_executor.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/codex_websockets_executor.go @@ -17,13 +17,13 @@ import ( "github.com/google/uuid" "github.com/gorilla/websocket" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/gemini_cli_executor.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/gemini_cli_executor.go index cb3ffb5969..72fb9560d7 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/gemini_cli_executor.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/gemini_cli_executor.go @@ -17,14 +17,14 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v6/internal/runtime/geminicli" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/runtime/geminicli" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/gemini_executor.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/gemini_executor.go index 7c25b8935f..35512bd3ae 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/gemini_executor.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/gemini_executor.go @@ -12,12 +12,12 @@ import ( "net/http" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/gemini_vertex_executor.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/gemini_vertex_executor.go index 7ad1c6186b..8816658210 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/gemini_vertex_executor.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/gemini_vertex_executor.go @@ -14,12 +14,12 @@ import ( "strings" "time" - vertexauth "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/vertex" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + vertexauth "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/vertex" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/github_copilot_executor.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/github_copilot_executor.go index af4b7e6a13..281900bcec 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/github_copilot_executor.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/github_copilot_executor.go @@ -12,12 +12,12 @@ import ( "time" "github.com/google/uuid" - copilotauth "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/copilot" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + copilotauth "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/copilot" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/github_copilot_executor_test.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/github_copilot_executor_test.go index 39868ef751..77963fbc97 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/github_copilot_executor_test.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/github_copilot_executor_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/iflow_executor.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/iflow_executor.go index 65a0b8f81e..8e63d1c94b 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/iflow_executor.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/iflow_executor.go @@ -14,13 +14,13 @@ import ( "time" "github.com/google/uuid" - iflowauth "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/iflow" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + iflowauth "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/iflow" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/iflow_executor_test.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/iflow_executor_test.go index e588548b0f..8ed172b7cd 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/iflow_executor_test.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/iflow_executor_test.go @@ -3,7 +3,7 @@ package executor import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" ) func TestIFlowExecutorParseSuffix(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/kilo_executor.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/kilo_executor.go index 34f620230f..9adaa5a942 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/kilo_executor.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/kilo_executor.go @@ -11,13 +11,13 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/kimi_executor.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/kimi_executor.go index d5e3702f48..c773b6f091 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/kimi_executor.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/kimi_executor.go @@ -13,12 +13,12 @@ import ( "strings" "time" - kimiauth "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/kimi" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + kimiauth "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/kimi" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/kiro_executor.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/kiro_executor.go index 3d1e2d5184..9fecf781b7 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/kiro_executor.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/kiro_executor.go @@ -21,16 +21,16 @@ import ( "time" "github.com/google/uuid" - kiroauth "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/kiro" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - kiroclaude "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/claude" - kirocommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/common" - kiroopenai "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/openai" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/kiro" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + kiroclaude "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/claude" + kirocommon "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/common" + kiroopenai "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/openai" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/logging_helpers.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/logging_helpers.go index ae2aee3ffd..cef1b91a6e 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/logging_helpers.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/logging_helpers.go @@ -11,9 +11,9 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/openai_compat_executor.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/openai_compat_executor.go index d28b36251a..fc6bf7a145 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/openai_compat_executor.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/openai_compat_executor.go @@ -10,12 +10,12 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/openai_compat_executor_compact_test.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/openai_compat_executor_compact_test.go index fe2812623b..060705001f 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/openai_compat_executor_compact_test.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/openai_compat_executor_compact_test.go @@ -7,10 +7,10 @@ import ( "net/http/httptest" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/payload_helpers.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/payload_helpers.go index 271e2c5b46..b18519afc1 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/payload_helpers.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/payload_helpers.go @@ -4,9 +4,9 @@ import ( "encoding/json" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/proxy_helpers.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/proxy_helpers.go index 8998eb236b..985ab4eb38 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/proxy_helpers.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/proxy_helpers.go @@ -9,8 +9,8 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" "golang.org/x/net/proxy" ) diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/qwen_executor.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/qwen_executor.go index bcc4a057ae..4daf66fb6e 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/qwen_executor.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/qwen_executor.go @@ -10,12 +10,12 @@ import ( "strings" "time" - qwenauth "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/qwen" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + qwenauth "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/qwen" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/qwen_executor_test.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/qwen_executor_test.go index 6a777c53c5..36cf5b0bc3 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/qwen_executor_test.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/qwen_executor_test.go @@ -3,7 +3,7 @@ package executor import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" ) func TestQwenExecutorParseSuffix(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/thinking_providers.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/thinking_providers.go index b961db9035..314780a9a8 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/thinking_providers.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/thinking_providers.go @@ -1,12 +1,12 @@ package executor import ( - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking/provider/antigravity" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking/provider/claude" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking/provider/codex" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking/provider/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking/provider/geminicli" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking/provider/iflow" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking/provider/kimi" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking/provider/openai" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking/provider/antigravity" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking/provider/claude" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking/provider/codex" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking/provider/gemini" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking/provider/geminicli" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking/provider/iflow" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking/provider/kimi" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking/provider/openai" ) diff --git a/.worktrees/config/m/config-build/active/internal/runtime/executor/usage_helpers.go b/.worktrees/config/m/config-build/active/internal/runtime/executor/usage_helpers.go index a642fac2b9..f8dc48638c 100644 --- a/.worktrees/config/m/config-build/active/internal/runtime/executor/usage_helpers.go +++ b/.worktrees/config/m/config-build/active/internal/runtime/executor/usage_helpers.go @@ -9,8 +9,8 @@ import ( "time" "github.com/gin-gonic/gin" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/store/gitstore.go b/.worktrees/config/m/config-build/active/internal/store/gitstore.go index c8db660cb3..ee03424d98 100644 --- a/.worktrees/config/m/config-build/active/internal/store/gitstore.go +++ b/.worktrees/config/m/config-build/active/internal/store/gitstore.go @@ -18,7 +18,7 @@ import ( "github.com/go-git/go-git/v6/plumbing/object" "github.com/go-git/go-git/v6/plumbing/transport" "github.com/go-git/go-git/v6/plumbing/transport/http" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // gcInterval defines minimum time between garbage collection runs. diff --git a/.worktrees/config/m/config-build/active/internal/store/objectstore.go b/.worktrees/config/m/config-build/active/internal/store/objectstore.go index 8492eab7b5..b2031608a5 100644 --- a/.worktrees/config/m/config-build/active/internal/store/objectstore.go +++ b/.worktrees/config/m/config-build/active/internal/store/objectstore.go @@ -17,8 +17,8 @@ import ( "github.com/minio/minio-go/v7" "github.com/minio/minio-go/v7/pkg/credentials" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/store/postgresstore.go b/.worktrees/config/m/config-build/active/internal/store/postgresstore.go index a18f45f8bb..3835b5f978 100644 --- a/.worktrees/config/m/config-build/active/internal/store/postgresstore.go +++ b/.worktrees/config/m/config-build/active/internal/store/postgresstore.go @@ -14,8 +14,8 @@ import ( "time" _ "github.com/jackc/pgx/v5/stdlib" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/thinking/apply.go b/.worktrees/config/m/config-build/active/internal/thinking/apply.go index 8a5a1d7d27..08695df8c4 100644 --- a/.worktrees/config/m/config-build/active/internal/thinking/apply.go +++ b/.worktrees/config/m/config-build/active/internal/thinking/apply.go @@ -4,7 +4,7 @@ package thinking import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/thinking/convert.go b/.worktrees/config/m/config-build/active/internal/thinking/convert.go index 776ccef605..f3ba9e4e92 100644 --- a/.worktrees/config/m/config-build/active/internal/thinking/convert.go +++ b/.worktrees/config/m/config-build/active/internal/thinking/convert.go @@ -3,7 +3,7 @@ package thinking import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" ) // levelToBudgetMap defines the standard Level → Budget mapping. diff --git a/.worktrees/config/m/config-build/active/internal/thinking/provider/antigravity/apply.go b/.worktrees/config/m/config-build/active/internal/thinking/provider/antigravity/apply.go index d202035fc6..a6b1c95d19 100644 --- a/.worktrees/config/m/config-build/active/internal/thinking/provider/antigravity/apply.go +++ b/.worktrees/config/m/config-build/active/internal/thinking/provider/antigravity/apply.go @@ -9,8 +9,8 @@ package antigravity import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/thinking/provider/claude/apply.go b/.worktrees/config/m/config-build/active/internal/thinking/provider/claude/apply.go index 3c74d5146d..680e0247e3 100644 --- a/.worktrees/config/m/config-build/active/internal/thinking/provider/claude/apply.go +++ b/.worktrees/config/m/config-build/active/internal/thinking/provider/claude/apply.go @@ -7,8 +7,8 @@ package claude import ( - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/thinking/provider/codex/apply.go b/.worktrees/config/m/config-build/active/internal/thinking/provider/codex/apply.go index 3bed318b09..55610c7b0f 100644 --- a/.worktrees/config/m/config-build/active/internal/thinking/provider/codex/apply.go +++ b/.worktrees/config/m/config-build/active/internal/thinking/provider/codex/apply.go @@ -9,8 +9,8 @@ package codex import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/thinking/provider/gemini/apply.go b/.worktrees/config/m/config-build/active/internal/thinking/provider/gemini/apply.go index 39bb4231d0..ee922e91af 100644 --- a/.worktrees/config/m/config-build/active/internal/thinking/provider/gemini/apply.go +++ b/.worktrees/config/m/config-build/active/internal/thinking/provider/gemini/apply.go @@ -12,8 +12,8 @@ package gemini import ( - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/thinking/provider/geminicli/apply.go b/.worktrees/config/m/config-build/active/internal/thinking/provider/geminicli/apply.go index 5908b6bce5..b9dea23e6e 100644 --- a/.worktrees/config/m/config-build/active/internal/thinking/provider/geminicli/apply.go +++ b/.worktrees/config/m/config-build/active/internal/thinking/provider/geminicli/apply.go @@ -5,8 +5,8 @@ package geminicli import ( - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/thinking/provider/iflow/apply.go b/.worktrees/config/m/config-build/active/internal/thinking/provider/iflow/apply.go index 35d13f59a0..7a395cedaf 100644 --- a/.worktrees/config/m/config-build/active/internal/thinking/provider/iflow/apply.go +++ b/.worktrees/config/m/config-build/active/internal/thinking/provider/iflow/apply.go @@ -11,8 +11,8 @@ package iflow import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/thinking/provider/kimi/apply.go b/.worktrees/config/m/config-build/active/internal/thinking/provider/kimi/apply.go index 4e68eaa2f2..e4c4de4f1f 100644 --- a/.worktrees/config/m/config-build/active/internal/thinking/provider/kimi/apply.go +++ b/.worktrees/config/m/config-build/active/internal/thinking/provider/kimi/apply.go @@ -8,8 +8,8 @@ package kimi import ( "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/thinking/provider/openai/apply.go b/.worktrees/config/m/config-build/active/internal/thinking/provider/openai/apply.go index e8a2562f11..29ac7e0568 100644 --- a/.worktrees/config/m/config-build/active/internal/thinking/provider/openai/apply.go +++ b/.worktrees/config/m/config-build/active/internal/thinking/provider/openai/apply.go @@ -8,8 +8,8 @@ package openai import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/thinking/types.go b/.worktrees/config/m/config-build/active/internal/thinking/types.go index 6ae1e088fe..3c33e14648 100644 --- a/.worktrees/config/m/config-build/active/internal/thinking/types.go +++ b/.worktrees/config/m/config-build/active/internal/thinking/types.go @@ -4,7 +4,7 @@ // thinking configurations across various AI providers (Claude, Gemini, OpenAI, iFlow). package thinking -import "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" +import "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" // ThinkingMode represents the type of thinking configuration mode. type ThinkingMode int diff --git a/.worktrees/config/m/config-build/active/internal/thinking/validate.go b/.worktrees/config/m/config-build/active/internal/thinking/validate.go index f082ad565d..f76ebdf429 100644 --- a/.worktrees/config/m/config-build/active/internal/thinking/validate.go +++ b/.worktrees/config/m/config-build/active/internal/thinking/validate.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/antigravity_claude_request.go b/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/antigravity_claude_request.go index 448aa9762f..48780fd77f 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/antigravity_claude_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/antigravity_claude_request.go @@ -8,10 +8,10 @@ package claude import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/cache" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/cache" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/antigravity_claude_request_test.go b/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/antigravity_claude_request_test.go index c28a14ec9e..19b8e76a2f 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/antigravity_claude_request_test.go +++ b/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/antigravity_claude_request_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/internal/cache" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/cache" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/antigravity_claude_response.go b/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/antigravity_claude_response.go index 3c834f6f21..bbb6d5c87d 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/antigravity_claude_response.go +++ b/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/antigravity_claude_response.go @@ -14,7 +14,7 @@ import ( "sync/atomic" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/cache" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/cache" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" diff --git a/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/antigravity_claude_response_test.go b/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/antigravity_claude_response_test.go index c561c55751..fe627eb111 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/antigravity_claude_response_test.go +++ b/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/antigravity_claude_response_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/internal/cache" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/cache" ) // ============================================================================ diff --git a/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/init.go b/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/init.go index 21fe0b26ed..74d00a8bcd 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/antigravity/claude/init.go @@ -1,9 +1,9 @@ package claude import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/antigravity/gemini/antigravity_gemini_request.go b/.worktrees/config/m/config-build/active/internal/translator/antigravity/gemini/antigravity_gemini_request.go index 1d04474069..9c20bd922e 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/antigravity/gemini/antigravity_gemini_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/antigravity/gemini/antigravity_gemini_request.go @@ -9,8 +9,8 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/translator/antigravity/gemini/init.go b/.worktrees/config/m/config-build/active/internal/translator/antigravity/gemini/init.go index 3955824863..c0e204e0f4 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/antigravity/gemini/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/antigravity/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/chat-completions/antigravity_openai_request.go b/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/chat-completions/antigravity_openai_request.go index a8105c4ec3..6a94e9abf5 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/chat-completions/antigravity_openai_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/chat-completions/antigravity_openai_request.go @@ -6,9 +6,9 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/chat-completions/antigravity_openai_response.go b/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/chat-completions/antigravity_openai_response.go index af9ffef19c..99bca3f7a8 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/chat-completions/antigravity_openai_response.go +++ b/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/chat-completions/antigravity_openai_response.go @@ -15,7 +15,7 @@ import ( log "github.com/sirupsen/logrus" - . "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/openai/chat-completions" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/openai/chat-completions" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/chat-completions/init.go b/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/chat-completions/init.go index 5c5c71e461..aac3adbad6 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/chat-completions/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/responses/antigravity_openai-responses_request.go b/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/responses/antigravity_openai-responses_request.go index 90bfa14c05..fff8703949 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/responses/antigravity_openai-responses_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/responses/antigravity_openai-responses_request.go @@ -1,8 +1,8 @@ package responses import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/antigravity/gemini" - . "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/openai/responses" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/antigravity/gemini" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/openai/responses" ) func ConvertOpenAIResponsesRequestToAntigravity(modelName string, inputRawJSON []byte, stream bool) []byte { diff --git a/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/responses/antigravity_openai-responses_response.go b/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/responses/antigravity_openai-responses_response.go index 7c416c1ff6..d2980a2bf0 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/responses/antigravity_openai-responses_response.go +++ b/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/responses/antigravity_openai-responses_response.go @@ -3,7 +3,7 @@ package responses import ( "context" - . "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/openai/responses" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/openai/responses" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/responses/init.go b/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/responses/init.go index 8d13703239..620a6e325c 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/responses/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/antigravity/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/claude/gemini-cli/claude_gemini-cli_request.go b/.worktrees/config/m/config-build/active/internal/translator/claude/gemini-cli/claude_gemini-cli_request.go index 831d784db3..adefbbd5f6 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/claude/gemini-cli/claude_gemini-cli_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/claude/gemini-cli/claude_gemini-cli_request.go @@ -6,7 +6,7 @@ package geminiCLI import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/claude/gemini" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/claude/gemini" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/claude/gemini-cli/claude_gemini-cli_response.go b/.worktrees/config/m/config-build/active/internal/translator/claude/gemini-cli/claude_gemini-cli_response.go index bc072b3030..de8b6d528c 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/claude/gemini-cli/claude_gemini-cli_response.go +++ b/.worktrees/config/m/config-build/active/internal/translator/claude/gemini-cli/claude_gemini-cli_response.go @@ -7,7 +7,7 @@ package geminiCLI import ( "context" - . "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/claude/gemini" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/claude/gemini" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/claude/gemini-cli/init.go b/.worktrees/config/m/config-build/active/internal/translator/claude/gemini-cli/init.go index ca364a6ee0..81bb2375fd 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/claude/gemini-cli/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/claude/gemini-cli/init.go @@ -1,9 +1,9 @@ package geminiCLI import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/claude/gemini/claude_gemini_request.go b/.worktrees/config/m/config-build/active/internal/translator/claude/gemini/claude_gemini_request.go index ea53da0540..945bb075f5 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/claude/gemini/claude_gemini_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/claude/gemini/claude_gemini_request.go @@ -14,8 +14,8 @@ import ( "strings" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/claude/gemini/init.go b/.worktrees/config/m/config-build/active/internal/translator/claude/gemini/init.go index 8924f62c87..ede0325ff6 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/claude/gemini/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/claude/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/claude/openai/chat-completions/claude_openai_request.go b/.worktrees/config/m/config-build/active/internal/translator/claude/openai/chat-completions/claude_openai_request.go index 3cad18825e..8998f768c7 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/claude/openai/chat-completions/claude_openai_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/claude/openai/chat-completions/claude_openai_request.go @@ -14,7 +14,7 @@ import ( "strings" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/claude/openai/chat-completions/init.go b/.worktrees/config/m/config-build/active/internal/translator/claude/openai/chat-completions/init.go index a18840bace..3193fa7c3f 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/claude/openai/chat-completions/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/claude/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/claude/openai/responses/claude_openai-responses_request.go b/.worktrees/config/m/config-build/active/internal/translator/claude/openai/responses/claude_openai-responses_request.go index 337f9be93b..fd9e001b41 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/claude/openai/responses/claude_openai-responses_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/claude/openai/responses/claude_openai-responses_request.go @@ -9,7 +9,7 @@ import ( "strings" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/claude/openai/responses/init.go b/.worktrees/config/m/config-build/active/internal/translator/claude/openai/responses/init.go index 595fecc6ef..e093854c8f 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/claude/openai/responses/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/claude/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/codex/claude/codex_claude_request.go b/.worktrees/config/m/config-build/active/internal/translator/codex/claude/codex_claude_request.go index 223a2559f7..5cc5f4eead 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/codex/claude/codex_claude_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/codex/claude/codex_claude_request.go @@ -10,7 +10,7 @@ import ( "strconv" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/codex/claude/init.go b/.worktrees/config/m/config-build/active/internal/translator/codex/claude/init.go index 7126edc303..2095ae77e4 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/codex/claude/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/codex/claude/init.go @@ -1,9 +1,9 @@ package claude import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/codex/gemini-cli/codex_gemini-cli_request.go b/.worktrees/config/m/config-build/active/internal/translator/codex/gemini-cli/codex_gemini-cli_request.go index 8b32453d26..5765444951 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/codex/gemini-cli/codex_gemini-cli_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/codex/gemini-cli/codex_gemini-cli_request.go @@ -6,7 +6,7 @@ package geminiCLI import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/codex/gemini" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/codex/gemini" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/codex/gemini-cli/codex_gemini-cli_response.go b/.worktrees/config/m/config-build/active/internal/translator/codex/gemini-cli/codex_gemini-cli_response.go index c60e66b9c7..116505af03 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/codex/gemini-cli/codex_gemini-cli_response.go +++ b/.worktrees/config/m/config-build/active/internal/translator/codex/gemini-cli/codex_gemini-cli_response.go @@ -8,7 +8,7 @@ import ( "context" "fmt" - . "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/codex/gemini" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/codex/gemini" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/codex/gemini-cli/init.go b/.worktrees/config/m/config-build/active/internal/translator/codex/gemini-cli/init.go index 8bcd3de5fd..453b6b4cd3 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/codex/gemini-cli/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/codex/gemini-cli/init.go @@ -1,9 +1,9 @@ package geminiCLI import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/codex/gemini/codex_gemini_request.go b/.worktrees/config/m/config-build/active/internal/translator/codex/gemini/codex_gemini_request.go index 9f5d7b311c..97deb11e6f 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/codex/gemini/codex_gemini_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/codex/gemini/codex_gemini_request.go @@ -12,8 +12,8 @@ import ( "strconv" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/codex/gemini/init.go b/.worktrees/config/m/config-build/active/internal/translator/codex/gemini/init.go index 41d30559a6..20b7ddf3c2 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/codex/gemini/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/codex/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/codex/openai/chat-completions/init.go b/.worktrees/config/m/config-build/active/internal/translator/codex/openai/chat-completions/init.go index 8f782fdae1..aeef9f447e 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/codex/openai/chat-completions/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/codex/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/codex/openai/responses/init.go b/.worktrees/config/m/config-build/active/internal/translator/codex/openai/responses/init.go index cab759f297..df231b6a66 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/codex/openai/responses/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/codex/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/claude/gemini-cli_claude_request.go b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/claude/gemini-cli_claude_request.go index ee66138140..849b5caaea 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/claude/gemini-cli_claude_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/claude/gemini-cli_claude_request.go @@ -9,7 +9,7 @@ import ( "bytes" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/claude/init.go b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/claude/init.go index 79ed03c68e..bca08370d4 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/claude/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/claude/init.go @@ -1,9 +1,9 @@ package claude import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/gemini/gemini-cli_gemini_request.go b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/gemini/gemini-cli_gemini_request.go index 15ff8b983a..3553438304 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/gemini/gemini-cli_gemini_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/gemini/gemini-cli_gemini_request.go @@ -8,8 +8,8 @@ package gemini import ( "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/gemini/init.go b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/gemini/init.go index fbad4ab50b..bd13ad7833 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/gemini/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/chat-completions/gemini-cli_openai_request.go b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/chat-completions/gemini-cli_openai_request.go index 53da71f4e5..2001dbe179 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/chat-completions/gemini-cli_openai_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/chat-completions/gemini-cli_openai_request.go @@ -6,9 +6,9 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/chat-completions/gemini-cli_openai_response.go b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/chat-completions/gemini-cli_openai_response.go index 0415e01493..23120153fa 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/chat-completions/gemini-cli_openai_response.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/chat-completions/gemini-cli_openai_response.go @@ -13,7 +13,7 @@ import ( "sync/atomic" "time" - . "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/openai/chat-completions" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/openai/chat-completions" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/chat-completions/init.go b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/chat-completions/init.go index 3bd76c517d..db87bff123 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/chat-completions/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/responses/gemini-cli_openai-responses_request.go b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/responses/gemini-cli_openai-responses_request.go index 657e45fdb2..327880b6b6 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/responses/gemini-cli_openai-responses_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/responses/gemini-cli_openai-responses_request.go @@ -1,8 +1,8 @@ package responses import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini-cli/gemini" - . "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/openai/responses" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini-cli/gemini" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/openai/responses" ) func ConvertOpenAIResponsesRequestToGeminiCLI(modelName string, inputRawJSON []byte, stream bool) []byte { diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/responses/gemini-cli_openai-responses_response.go b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/responses/gemini-cli_openai-responses_response.go index 5186588483..f990ad728b 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/responses/gemini-cli_openai-responses_response.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/responses/gemini-cli_openai-responses_response.go @@ -3,7 +3,7 @@ package responses import ( "context" - . "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/openai/responses" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/openai/responses" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/responses/init.go b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/responses/init.go index b25d670851..cdbaeb5f55 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/responses/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini-cli/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini/claude/gemini_claude_request.go b/.worktrees/config/m/config-build/active/internal/translator/gemini/claude/gemini_claude_request.go index e882f769a8..aaee7590a0 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini/claude/gemini_claude_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini/claude/gemini_claude_request.go @@ -9,7 +9,7 @@ import ( "bytes" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini/claude/init.go b/.worktrees/config/m/config-build/active/internal/translator/gemini/claude/init.go index 66fe51e739..15542231cd 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini/claude/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini/claude/init.go @@ -1,9 +1,9 @@ package claude import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini/gemini-cli/gemini_gemini-cli_request.go b/.worktrees/config/m/config-build/active/internal/translator/gemini/gemini-cli/gemini_gemini-cli_request.go index 1b2cdb4636..3d75eb8b00 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini/gemini-cli/gemini_gemini-cli_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini/gemini-cli/gemini_gemini-cli_request.go @@ -8,8 +8,8 @@ package geminiCLI import ( "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini/gemini-cli/init.go b/.worktrees/config/m/config-build/active/internal/translator/gemini/gemini-cli/init.go index 2c2224f7d0..9e5c95b7e8 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini/gemini-cli/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini/gemini-cli/init.go @@ -1,9 +1,9 @@ package geminiCLI import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini/gemini/gemini_gemini_request.go b/.worktrees/config/m/config-build/active/internal/translator/gemini/gemini/gemini_gemini_request.go index 8024e9e329..373c2f9d5b 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini/gemini/gemini_gemini_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini/gemini/gemini_gemini_request.go @@ -6,8 +6,8 @@ package gemini import ( "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini/gemini/init.go b/.worktrees/config/m/config-build/active/internal/translator/gemini/gemini/init.go index 28c9708338..398433aa93 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini/gemini/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) // Register a no-op response translator and a request normalizer for Gemini→Gemini. diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini/openai/chat-completions/gemini_openai_request.go b/.worktrees/config/m/config-build/active/internal/translator/gemini/openai/chat-completions/gemini_openai_request.go index 5de3568198..52d79dc355 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini/openai/chat-completions/gemini_openai_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini/openai/chat-completions/gemini_openai_request.go @@ -6,9 +6,9 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini/openai/chat-completions/init.go b/.worktrees/config/m/config-build/active/internal/translator/gemini/openai/chat-completions/init.go index 800e07db3d..44a29e397d 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini/openai/chat-completions/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini/openai/responses/gemini_openai-responses_request.go b/.worktrees/config/m/config-build/active/internal/translator/gemini/openai/responses/gemini_openai-responses_request.go index aca0171781..72e052ed94 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini/openai/responses/gemini_openai-responses_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini/openai/responses/gemini_openai-responses_request.go @@ -3,7 +3,7 @@ package responses import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/gemini/openai/responses/init.go b/.worktrees/config/m/config-build/active/internal/translator/gemini/openai/responses/init.go index b53cac3d81..3ae6f3f181 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/gemini/openai/responses/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/gemini/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/init.go b/.worktrees/config/m/config-build/active/internal/translator/init.go index 0754db03b4..5f30e30956 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/init.go @@ -1,39 +1,39 @@ package translator import ( - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/claude/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/claude/gemini-cli" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/claude/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/claude/openai/responses" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/claude/gemini" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/claude/gemini-cli" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/claude/openai/chat-completions" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/claude/openai/responses" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/codex/claude" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/codex/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/codex/gemini-cli" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/codex/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/codex/openai/responses" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/codex/claude" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/codex/gemini" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/codex/gemini-cli" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/codex/openai/chat-completions" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/codex/openai/responses" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini-cli/claude" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini-cli/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini-cli/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini-cli/openai/responses" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini-cli/claude" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini-cli/gemini" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini-cli/openai/chat-completions" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini-cli/openai/responses" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/claude" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/gemini-cli" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/openai/responses" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/claude" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/gemini" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/gemini-cli" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/openai/chat-completions" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/openai/responses" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/openai/claude" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/openai/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/openai/gemini-cli" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/openai/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/openai/openai/responses" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/openai/claude" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/openai/gemini" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/openai/gemini-cli" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/openai/openai/chat-completions" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/openai/openai/responses" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/antigravity/claude" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/antigravity/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/antigravity/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/antigravity/openai/responses" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/antigravity/claude" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/antigravity/gemini" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/antigravity/openai/chat-completions" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/antigravity/openai/responses" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/claude" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/openai" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/claude" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/openai" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/init.go b/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/init.go index 1685d195a5..46311b0d3d 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/init.go @@ -2,9 +2,9 @@ package claude import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_claude_request.go b/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_claude_request.go index 0ad090aeed..dfc4a3df14 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_claude_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_claude_request.go @@ -12,7 +12,7 @@ import ( "unicode/utf8" "github.com/google/uuid" - kirocommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/common" + kirocommon "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/common" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_claude_response.go b/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_claude_response.go index 89a760cd80..028a2bfee6 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_claude_response.go +++ b/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_claude_response.go @@ -10,10 +10,10 @@ import ( "strings" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" log "github.com/sirupsen/logrus" - kirocommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/common" + kirocommon "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/common" ) // generateThinkingSignature generates a signature for thinking content. diff --git a/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_claude_stream.go b/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_claude_stream.go index c86b6e023e..c36d0fba6d 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_claude_stream.go +++ b/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_claude_stream.go @@ -7,7 +7,7 @@ import ( "encoding/json" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" ) // BuildClaudeMessageStartEvent creates the message_start SSE event diff --git a/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_claude_tools.go b/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_claude_tools.go index d00c74932c..0c906d9df6 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_claude_tools.go +++ b/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_claude_tools.go @@ -8,7 +8,7 @@ import ( "strings" "github.com/google/uuid" - kirocommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/common" + kirocommon "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/common" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_websearch_handler.go b/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_websearch_handler.go index 9652e87bb1..112648cd3c 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_websearch_handler.go +++ b/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/kiro_websearch_handler.go @@ -12,8 +12,8 @@ import ( "time" "github.com/google/uuid" - kiroauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/kiro" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kiro" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/tool_compression.go b/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/tool_compression.go index 7d4a424e96..2c4b97e38a 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/tool_compression.go +++ b/.worktrees/config/m/config-build/active/internal/translator/kiro/claude/tool_compression.go @@ -7,7 +7,7 @@ import ( "encoding/json" "unicode/utf8" - kirocommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/common" + kirocommon "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/common" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/init.go b/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/init.go index 653eed45ee..2f23498b54 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/init.go @@ -2,9 +2,9 @@ package openai import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/kiro_openai.go b/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/kiro_openai.go index 03962b9f5f..724e675d73 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/kiro_openai.go +++ b/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/kiro_openai.go @@ -11,8 +11,8 @@ import ( "encoding/json" "strings" - kirocommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/common" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + kirocommon "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/kiro_openai_request.go b/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/kiro_openai_request.go index 474231b3c2..1426e1c1cd 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/kiro_openai_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/kiro_openai_request.go @@ -12,8 +12,8 @@ import ( "unicode/utf8" "github.com/google/uuid" - kiroclaude "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/claude" - kirocommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/common" + kiroclaude "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/claude" + kirocommon "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/common" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/kiro_openai_response.go b/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/kiro_openai_response.go index edc70ad8cb..e6af8e4cec 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/kiro_openai_response.go +++ b/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/kiro_openai_response.go @@ -10,7 +10,7 @@ import ( "time" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/kiro_openai_stream.go b/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/kiro_openai_stream.go index e72d970e0d..55fb0f2596 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/kiro_openai_stream.go +++ b/.worktrees/config/m/config-build/active/internal/translator/kiro/openai/kiro_openai_stream.go @@ -8,7 +8,7 @@ import ( "time" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" ) // OpenAIStreamState tracks the state of streaming response conversion diff --git a/.worktrees/config/m/config-build/active/internal/translator/openai/claude/init.go b/.worktrees/config/m/config-build/active/internal/translator/openai/claude/init.go index 0e0f82eae9..b8ac27705c 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/openai/claude/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/openai/claude/init.go @@ -1,9 +1,9 @@ package claude import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/openai/claude/openai_claude_request.go b/.worktrees/config/m/config-build/active/internal/translator/openai/claude/openai_claude_request.go index acb79a1396..488763995f 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/openai/claude/openai_claude_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/openai/claude/openai_claude_request.go @@ -8,7 +8,7 @@ package claude import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/openai/claude/openai_claude_response.go b/.worktrees/config/m/config-build/active/internal/translator/openai/claude/openai_claude_response.go index 8ddf3084ae..e270a57eeb 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/openai/claude/openai_claude_response.go +++ b/.worktrees/config/m/config-build/active/internal/translator/openai/claude/openai_claude_response.go @@ -12,7 +12,7 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/openai/gemini-cli/init.go b/.worktrees/config/m/config-build/active/internal/translator/openai/gemini-cli/init.go index 12aec5ec90..f1e620a3a2 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/openai/gemini-cli/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/openai/gemini-cli/init.go @@ -1,9 +1,9 @@ package geminiCLI import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/openai/gemini-cli/openai_gemini_request.go b/.worktrees/config/m/config-build/active/internal/translator/openai/gemini-cli/openai_gemini_request.go index 847c278f36..07c2f84f74 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/openai/gemini-cli/openai_gemini_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/openai/gemini-cli/openai_gemini_request.go @@ -6,7 +6,7 @@ package geminiCLI import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/openai/gemini" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/openai/gemini" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/openai/gemini-cli/openai_gemini_response.go b/.worktrees/config/m/config-build/active/internal/translator/openai/gemini-cli/openai_gemini_response.go index b5977964de..984e5309d2 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/openai/gemini-cli/openai_gemini_response.go +++ b/.worktrees/config/m/config-build/active/internal/translator/openai/gemini-cli/openai_gemini_response.go @@ -9,7 +9,7 @@ import ( "context" "fmt" - . "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/openai/gemini" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/openai/gemini" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/openai/gemini/init.go b/.worktrees/config/m/config-build/active/internal/translator/openai/gemini/init.go index 4f056ace9f..9a789a92e0 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/openai/gemini/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/openai/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/openai/gemini/openai_gemini_request.go b/.worktrees/config/m/config-build/active/internal/translator/openai/gemini/openai_gemini_request.go index 167b71e91b..5ddc5db482 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/openai/gemini/openai_gemini_request.go +++ b/.worktrees/config/m/config-build/active/internal/translator/openai/gemini/openai_gemini_request.go @@ -11,7 +11,7 @@ import ( "math/big" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/internal/translator/openai/openai/chat-completions/init.go b/.worktrees/config/m/config-build/active/internal/translator/openai/openai/chat-completions/init.go index 90fa3dcd90..58b52f5cdb 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/openai/openai/chat-completions/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/openai/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/openai/openai/responses/init.go b/.worktrees/config/m/config-build/active/internal/translator/openai/openai/responses/init.go index e6f60e0e13..b1bf14f96d 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/openai/openai/responses/init.go +++ b/.worktrees/config/m/config-build/active/internal/translator/openai/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/internal/translator/translator/translator.go b/.worktrees/config/m/config-build/active/internal/translator/translator/translator.go index 11a881adcf..5391fb11d9 100644 --- a/.worktrees/config/m/config-build/active/internal/translator/translator/translator.go +++ b/.worktrees/config/m/config-build/active/internal/translator/translator/translator.go @@ -7,8 +7,8 @@ package translator import ( "context" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" ) // registry holds the default translator registry instance. diff --git a/.worktrees/config/m/config-build/active/internal/usage/logger_plugin.go b/.worktrees/config/m/config-build/active/internal/usage/logger_plugin.go index e4371e8d39..468e3ff2ca 100644 --- a/.worktrees/config/m/config-build/active/internal/usage/logger_plugin.go +++ b/.worktrees/config/m/config-build/active/internal/usage/logger_plugin.go @@ -12,7 +12,7 @@ import ( "time" "github.com/gin-gonic/gin" - coreusage "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + coreusage "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" ) var statisticsEnabled atomic.Bool diff --git a/.worktrees/config/m/config-build/active/internal/util/provider.go b/.worktrees/config/m/config-build/active/internal/util/provider.go index 1535135479..1512decaf7 100644 --- a/.worktrees/config/m/config-build/active/internal/util/provider.go +++ b/.worktrees/config/m/config-build/active/internal/util/provider.go @@ -7,8 +7,8 @@ import ( "net/url" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/util/proxy.go b/.worktrees/config/m/config-build/active/internal/util/proxy.go index aea52ba8ce..f3cd88e7ee 100644 --- a/.worktrees/config/m/config-build/active/internal/util/proxy.go +++ b/.worktrees/config/m/config-build/active/internal/util/proxy.go @@ -9,7 +9,7 @@ import ( "net/http" "net/url" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" log "github.com/sirupsen/logrus" "golang.org/x/net/proxy" ) diff --git a/.worktrees/config/m/config-build/active/internal/util/util.go b/.worktrees/config/m/config-build/active/internal/util/util.go index 9bf630f299..1a0e7fae8a 100644 --- a/.worktrees/config/m/config-build/active/internal/util/util.go +++ b/.worktrees/config/m/config-build/active/internal/util/util.go @@ -11,7 +11,7 @@ import ( "regexp" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/watcher/clients.go b/.worktrees/config/m/config-build/active/internal/watcher/clients.go index cf0ed07600..7c4171d1fa 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/clients.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/clients.go @@ -14,10 +14,10 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - "github.com/router-for-me/CLIProxyAPI/v6/internal/watcher/diff" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/watcher/diff" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/watcher/config_reload.go b/.worktrees/config/m/config-build/active/internal/watcher/config_reload.go index edac347419..ba5d0d4d69 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/config_reload.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/config_reload.go @@ -9,9 +9,9 @@ import ( "reflect" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - "github.com/router-for-me/CLIProxyAPI/v6/internal/watcher/diff" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/watcher/diff" "gopkg.in/yaml.v3" log "github.com/sirupsen/logrus" diff --git a/.worktrees/config/m/config-build/active/internal/watcher/diff/auth_diff.go b/.worktrees/config/m/config-build/active/internal/watcher/diff/auth_diff.go index 4b6e600852..267edec793 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/diff/auth_diff.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/diff/auth_diff.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // BuildAuthChangeDetails computes a redacted, human-readable list of auth field changes. diff --git a/.worktrees/config/m/config-build/active/internal/watcher/diff/config_diff.go b/.worktrees/config/m/config-build/active/internal/watcher/diff/config_diff.go index 6687749e59..ec9949c09b 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/diff/config_diff.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/diff/config_diff.go @@ -6,7 +6,7 @@ import ( "reflect" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) // BuildConfigChangeDetails computes a redacted, human-readable list of config changes. diff --git a/.worktrees/config/m/config-build/active/internal/watcher/diff/config_diff_test.go b/.worktrees/config/m/config-build/active/internal/watcher/diff/config_diff_test.go index 82486659f1..778eb96790 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/diff/config_diff_test.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/diff/config_diff_test.go @@ -3,8 +3,8 @@ package diff import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + sdkconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" ) func TestBuildConfigChangeDetails(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/internal/watcher/diff/model_hash.go b/.worktrees/config/m/config-build/active/internal/watcher/diff/model_hash.go index 5779faccd7..4b328150e9 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/diff/model_hash.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/diff/model_hash.go @@ -7,7 +7,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) // ComputeOpenAICompatModelsHash returns a stable hash for OpenAI-compat models. diff --git a/.worktrees/config/m/config-build/active/internal/watcher/diff/model_hash_test.go b/.worktrees/config/m/config-build/active/internal/watcher/diff/model_hash_test.go index db06ebd12c..07c62116fa 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/diff/model_hash_test.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/diff/model_hash_test.go @@ -3,7 +3,7 @@ package diff import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) func TestComputeOpenAICompatModelsHash_Deterministic(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/internal/watcher/diff/models_summary.go b/.worktrees/config/m/config-build/active/internal/watcher/diff/models_summary.go index 9c2aa91ac4..97d1e6b099 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/diff/models_summary.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/diff/models_summary.go @@ -6,7 +6,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) type GeminiModelsSummary struct { diff --git a/.worktrees/config/m/config-build/active/internal/watcher/diff/oauth_excluded.go b/.worktrees/config/m/config-build/active/internal/watcher/diff/oauth_excluded.go index 2039cf4898..7a9cd30fa4 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/diff/oauth_excluded.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/diff/oauth_excluded.go @@ -7,7 +7,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) type ExcludedModelsSummary struct { diff --git a/.worktrees/config/m/config-build/active/internal/watcher/diff/oauth_excluded_test.go b/.worktrees/config/m/config-build/active/internal/watcher/diff/oauth_excluded_test.go index f5ad391358..fec7ec0d1b 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/diff/oauth_excluded_test.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/diff/oauth_excluded_test.go @@ -3,7 +3,7 @@ package diff import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) func TestSummarizeExcludedModels_NormalizesAndDedupes(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/internal/watcher/diff/oauth_model_alias.go b/.worktrees/config/m/config-build/active/internal/watcher/diff/oauth_model_alias.go index c5a17d2940..f1fdaf74e3 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/diff/oauth_model_alias.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/diff/oauth_model_alias.go @@ -7,7 +7,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) type OAuthModelAliasSummary struct { diff --git a/.worktrees/config/m/config-build/active/internal/watcher/diff/openai_compat.go b/.worktrees/config/m/config-build/active/internal/watcher/diff/openai_compat.go index 6b01aed296..1017a7d4ce 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/diff/openai_compat.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/diff/openai_compat.go @@ -7,7 +7,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) // DiffOpenAICompatibility produces human-readable change descriptions. diff --git a/.worktrees/config/m/config-build/active/internal/watcher/diff/openai_compat_test.go b/.worktrees/config/m/config-build/active/internal/watcher/diff/openai_compat_test.go index db33db1487..d0a5454ae1 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/diff/openai_compat_test.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/diff/openai_compat_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) func TestDiffOpenAICompatibility(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/internal/watcher/dispatcher.go b/.worktrees/config/m/config-build/active/internal/watcher/dispatcher.go index ff3c5b632c..ecb1dd9a01 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/dispatcher.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/dispatcher.go @@ -9,9 +9,9 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/watcher/synthesizer" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/watcher/synthesizer" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func (w *Watcher) setAuthUpdateQueue(queue chan<- AuthUpdate) { diff --git a/.worktrees/config/m/config-build/active/internal/watcher/events.go b/.worktrees/config/m/config-build/active/internal/watcher/events.go index fb96ad2a35..f3e547a986 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/events.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/events.go @@ -13,7 +13,7 @@ import ( "time" "github.com/fsnotify/fsnotify" - kiroauth "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/kiro" + kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/kiro" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/config.go b/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/config.go index e044117ffe..9bd9b8c2b6 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/config.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/config.go @@ -5,9 +5,9 @@ import ( "strconv" "strings" - kiroauth "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/kiro" - "github.com/router-for-me/CLIProxyAPI/v6/internal/watcher/diff" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/kiro" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/watcher/diff" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/config_test.go b/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/config_test.go index 437f18d11e..2afbb175dd 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/config_test.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/config_test.go @@ -4,8 +4,8 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestNewConfigSynthesizer(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/context.go b/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/context.go index d973289a3a..99e8df7ad0 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/context.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/context.go @@ -3,7 +3,7 @@ package synthesizer import ( "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) // SynthesisContext provides the context needed for auth synthesis. diff --git a/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/file.go b/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/file.go index 4e05311703..4413f22050 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/file.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/file.go @@ -9,8 +9,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/runtime/geminicli" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/runtime/geminicli" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // FileSynthesizer generates Auth entries from OAuth JSON files. diff --git a/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/file_test.go b/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/file_test.go index 105d920747..c169ab4817 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/file_test.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/file_test.go @@ -8,8 +8,8 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestNewFileSynthesizer(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/helpers.go b/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/helpers.go index 102dc77e22..17d6a17f7f 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/helpers.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/helpers.go @@ -7,9 +7,9 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/watcher/diff" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/watcher/diff" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // StableIDGenerator generates stable, deterministic IDs for auth entries. diff --git a/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/helpers_test.go b/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/helpers_test.go index 46b9c8a053..7c6778245c 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/helpers_test.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/helpers_test.go @@ -5,9 +5,9 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/watcher/diff" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/watcher/diff" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestNewStableIDGenerator(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/interface.go b/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/interface.go index 1a9aedc965..76fbd8756b 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/interface.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/synthesizer/interface.go @@ -5,7 +5,7 @@ package synthesizer import ( - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // AuthSynthesizer defines the interface for generating Auth entries from various sources. diff --git a/.worktrees/config/m/config-build/active/internal/watcher/watcher.go b/.worktrees/config/m/config-build/active/internal/watcher/watcher.go index a451ef6eff..6fbae5fde0 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/watcher.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/watcher.go @@ -9,11 +9,11 @@ import ( "time" "github.com/fsnotify/fsnotify" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" "gopkg.in/yaml.v3" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/internal/watcher/watcher_test.go b/.worktrees/config/m/config-build/active/internal/watcher/watcher_test.go index 29113f5947..0d203efa3f 100644 --- a/.worktrees/config/m/config-build/active/internal/watcher/watcher_test.go +++ b/.worktrees/config/m/config-build/active/internal/watcher/watcher_test.go @@ -14,11 +14,11 @@ import ( "time" "github.com/fsnotify/fsnotify" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/internal/watcher/diff" - "github.com/router-for-me/CLIProxyAPI/v6/internal/watcher/synthesizer" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/watcher/diff" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/watcher/synthesizer" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" "gopkg.in/yaml.v3" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/access/config_access/provider.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/access/config_access/provider.go index 84e8abcb0e..4a7332e39f 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/access/config_access/provider.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/access/config_access/provider.go @@ -5,8 +5,8 @@ import ( "net/http" "strings" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v6/sdk/access" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + sdkaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/access" + sdkconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" ) // Register ensures the config-access provider is available to the access manager. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/access/config_access/provider_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/access/config_access/provider_test.go index bea4f53550..a6bac4f91f 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/access/config_access/provider_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/access/config_access/provider_test.go @@ -5,8 +5,8 @@ import ( "net/http/httptest" "testing" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v6/sdk/access" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + sdkaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/access" + sdkconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" ) func findProvider() sdkaccess.Provider { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/access/reconcile.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/access/reconcile.go index 290cac3e75..c51dae1bbf 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/access/reconcile.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/access/reconcile.go @@ -6,9 +6,9 @@ import ( "sort" "strings" - configaccess "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/access/config_access" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v6/sdk/access" + configaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/access/config_access" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + sdkaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/access" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/api_tools.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/api_tools.go index 6807c9e76d..45a4bdcb36 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/api_tools.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/api_tools.go @@ -19,9 +19,9 @@ import ( "golang.org/x/oauth2" "golang.org/x/oauth2/google" - kiroauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/kiro" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/runtime/geminicli" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kiro" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/runtime/geminicli" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) const defaultAPICallTimeout = 60 * time.Second diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/api_tools_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/api_tools_test.go index 772786e1f3..e6139d0e27 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/api_tools_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/api_tools_test.go @@ -14,9 +14,9 @@ import ( "time" "github.com/gin-gonic/gin" - kiroauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/kiro" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kiro" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestIsAllowedHostOverride(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/auth_files.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/auth_files.go index 193e4e4ee4..2cbb7735a5 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/auth_files.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/auth_files.go @@ -24,22 +24,22 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/antigravity" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/claude" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/copilot" - geminiAuth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/gemini" - iflowauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/iflow" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/kilo" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/kimi" - kiroauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/kiro" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/qwen" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/antigravity" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/claude" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/codex" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/copilot" + geminiAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/gemini" + iflowauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/iflow" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kilo" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kimi" + kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kiro" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/qwen" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "golang.org/x/oauth2" @@ -2037,7 +2037,7 @@ func (h *Handler) RequestGitHubToken(c *gin.Context) { state := fmt.Sprintf("gh-%d", time.Now().UnixNano()) // Initialize Copilot auth service - // We need to import "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/copilot" first if not present + // We need to import "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/copilot" first if not present // Assuming copilot package is imported as "copilot" deviceClient := copilot.NewDeviceFlowClient(h.cfg) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/config_basic.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/config_basic.go index 7222570dcf..bc37743f53 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/config_basic.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/config_basic.go @@ -10,9 +10,9 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + sdkconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" log "github.com/sirupsen/logrus" "gopkg.in/yaml.v3" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/config_lists.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/config_lists.go index 168b29e951..787755cc11 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/config_lists.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/config_lists.go @@ -6,7 +6,7 @@ import ( "strings" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) // Generic helpers for list[string] diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/handler.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/handler.go index 949d81de07..731512b3f3 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/handler.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/handler.go @@ -15,11 +15,11 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/buildinfo" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/usage" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/buildinfo" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/usage" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" "golang.org/x/crypto/bcrypt" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/logs.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/logs.go index 1a95cd430b..22685a2818 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/logs.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/logs.go @@ -13,7 +13,7 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/logging" ) const ( diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_auth_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_auth_test.go index 389e7fcd63..8b4bf2ca1b 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_auth_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_auth_test.go @@ -8,7 +8,7 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestListAuthFiles(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_basic_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_basic_test.go index cfff766b1f..78b15f501d 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_basic_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_basic_test.go @@ -9,7 +9,7 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestGetConfig(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_extra_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_extra_test.go index 0c97fb42a7..677c1c0f2c 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_extra_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_extra_test.go @@ -14,9 +14,9 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/usage" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/usage" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestNewHandler(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_fields_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_fields_test.go index f0c1e88979..0cfe0e5b3a 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_fields_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_fields_test.go @@ -7,7 +7,7 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func setupTestHandler(cfg *config.Config) (*Handler, string, func()) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_modelstates_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_modelstates_test.go index af3074b05f..87673262ec 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_modelstates_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/management_modelstates_test.go @@ -7,8 +7,8 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestRegisterAuthFromFilePreservesModelStates(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/model_definitions.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/model_definitions.go index 2a5dc36615..f72e37d0d7 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/model_definitions.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/model_definitions.go @@ -5,7 +5,7 @@ import ( "strings" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" ) // GetStaticModelDefinitions returns static model metadata for a given channel. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/routing_select.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/routing_select.go index 6aff094462..a33f8342d9 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/routing_select.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/routing_select.go @@ -4,7 +4,7 @@ import ( "net/http" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" ) // RoutingSelectRequest is the JSON body for POST /v1/routing/select. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/usage.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/usage.go index 0de877fdec..734045cca1 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/usage.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/usage.go @@ -6,7 +6,7 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/usage" ) type usageExportPayload struct { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/vertex_import.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/vertex_import.go index 2678a068b6..c79d6427be 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/vertex_import.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/management/vertex_import.go @@ -9,8 +9,8 @@ import ( "strings" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/vertex" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/vertex" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // ImportVertexCredential handles uploading a Vertex service account JSON and saving it as an auth record. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/routing_handler.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/routing_handler.go index 1b73c47e4e..4d568f021d 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/routing_handler.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/handlers/routing_handler.go @@ -5,7 +5,7 @@ import ( "net/http" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" ) // RoutingSelectRequest is the JSON body for POST /v1/routing/select. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/middleware/request_logging.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/middleware/request_logging.go index d3070bf62c..17e297fc68 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/middleware/request_logging.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/middleware/request_logging.go @@ -12,8 +12,8 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/logging" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/middleware/request_logging_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/middleware/request_logging_test.go index d0932e75ad..8d7d1acf04 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/middleware/request_logging_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/middleware/request_logging_test.go @@ -7,8 +7,8 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/logging" ) type mockRequestLogger struct { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/middleware/response_writer.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/middleware/response_writer.go index 21b0b99fc6..300bb98425 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/middleware/response_writer.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/middleware/response_writer.go @@ -13,8 +13,8 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/logging" ) const requestBodyOverrideContextKey = "REQUEST_BODY_OVERRIDE" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/middleware/response_writer_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/middleware/response_writer_test.go index ee811ec4e6..c7d13c6d53 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/middleware/response_writer_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/middleware/response_writer_test.go @@ -8,8 +8,8 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/logging" ) type mockLogger struct { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/amp.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/amp.go index c699903b5c..4b5d891f10 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/amp.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/amp.go @@ -9,9 +9,9 @@ import ( "sync" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/api/modules" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v6/sdk/access" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/api/modules" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + sdkaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/access" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/amp_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/amp_test.go index 98ab45c1dd..3de1de1a48 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/amp_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/amp_test.go @@ -9,10 +9,10 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/api/modules" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v6/sdk/access" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/api/modules" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + sdkaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/access" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" ) func TestAmpModule_Name(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/fallback_handlers.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/fallback_handlers.go index 607ba84e2e..b50a8c2e37 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/fallback_handlers.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/fallback_handlers.go @@ -8,8 +8,8 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/fallback_handlers_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/fallback_handlers_test.go index f3c2d3c1b7..3433f082ed 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/fallback_handlers_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/fallback_handlers_test.go @@ -9,8 +9,8 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" ) func TestFallbackHandler_ModelMapping_PreservesThinkingSuffixAndRewritesResponse(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/model_mapping.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/model_mapping.go index 5f49ab5455..eb5b6f7ec6 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/model_mapping.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/model_mapping.go @@ -7,9 +7,9 @@ import ( "strings" "sync" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/model_mapping_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/model_mapping_test.go index d19549ad36..1d8c9d312f 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/model_mapping_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/model_mapping_test.go @@ -3,8 +3,8 @@ package amp import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" ) func TestNewModelMapper(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/proxy_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/proxy_test.go index e92e9aa994..0b0cbbc5db 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/proxy_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/proxy_test.go @@ -11,7 +11,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) // Helper: compress data with gzip diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/routes.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/routes.go index 0020293789..92cbe2a8c4 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/routes.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/routes.go @@ -9,12 +9,12 @@ import ( "strings" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/logging" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers/claude" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers/gemini" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers/openai" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers/claude" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers/gemini" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers/openai" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/routes_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/routes_test.go index 60319a92c7..7b4166dc41 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/routes_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/routes_test.go @@ -8,7 +8,7 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" ) func TestRegisterManagementRoutes(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/secret.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/secret.go index f869770500..1f0ec01274 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/secret.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/secret.go @@ -10,7 +10,7 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/secret_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/secret_test.go index ffb8458a5b..1de320ccd0 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/secret_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/amp/secret_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" log "github.com/sirupsen/logrus" "github.com/sirupsen/logrus/hooks/test" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/modules.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/modules.go index 4049adb1c1..7289512042 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/modules.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/modules/modules.go @@ -6,8 +6,8 @@ import ( "fmt" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" ) // Context encapsulates the dependencies exposed to routing modules during diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/server.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/server.go index 9564e83755..1e7fdb0253 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/server.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/server.go @@ -19,24 +19,24 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/access" - managementHandlers "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/api/handlers/management" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/api/middleware" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/api/modules" - ampmodule "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/api/modules/amp" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/kiro" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/logging" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/managementasset" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/usage" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v6/sdk/access" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers/claude" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers/gemini" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers/openai" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/access" + managementHandlers "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/api/handlers/management" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/api/middleware" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/api/modules" + ampmodule "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/api/modules/amp" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kiro" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/managementasset" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + sdkaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/access" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers/claude" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers/gemini" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers/openai" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" "gopkg.in/yaml.v3" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/server_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/server_test.go index c5c52a3bfb..acda5a5dc3 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/api/server_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/api/server_test.go @@ -11,11 +11,11 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - coreusage "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/usage" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v6/sdk/access" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - sdkusage "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + coreusage "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/usage" + sdkaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/access" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + sdkusage "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" "github.com/stretchr/testify/require" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/antigravity/auth.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/antigravity/auth.go index c3660818d4..8e18dec440 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/antigravity/auth.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/antigravity/auth.go @@ -11,8 +11,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/claude/anthropic_auth.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/claude/anthropic_auth.go index 9cb87cbc18..78a889ff3c 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/claude/anthropic_auth.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/claude/anthropic_auth.go @@ -13,7 +13,7 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/claude/token.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/claude/token.go index b3f590a09c..550331ed82 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/claude/token.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/claude/token.go @@ -10,7 +10,7 @@ import ( "path/filepath" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" ) func sanitizeTokenFilePath(authFilePath string) (string, error) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/claude/utls_transport.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/claude/utls_transport.go index 9ac1975219..5d1f7f1660 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/claude/utls_transport.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/claude/utls_transport.go @@ -9,7 +9,7 @@ import ( "sync" tls "github.com/refraction-networking/utls" - pkgconfig "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + pkgconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" log "github.com/sirupsen/logrus" "golang.org/x/net/http2" "golang.org/x/net/proxy" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/codex/openai_auth.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/codex/openai_auth.go index c507d3253a..9652caeba6 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/codex/openai_auth.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/codex/openai_auth.go @@ -14,8 +14,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/codex/openai_auth_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/codex/openai_auth_test.go index 07752ecc58..0dc71b4a2a 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/codex/openai_auth_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/codex/openai_auth_test.go @@ -9,7 +9,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestNewCodexAuth(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/codex/token.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/codex/token.go index 9e21f7bd16..4e8c3fb2ac 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/codex/token.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/codex/token.go @@ -10,7 +10,7 @@ import ( "path/filepath" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" ) func sanitizeTokenFilePath(authFilePath string) (string, error) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/copilot_auth.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/copilot_auth.go index cc918becc9..0fac429994 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/copilot_auth.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/copilot_auth.go @@ -10,8 +10,8 @@ import ( "net/http" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/copilot_auth_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/copilot_auth_test.go index 575f836ddc..8b06a19531 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/copilot_auth_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/copilot_auth_test.go @@ -8,7 +8,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) type rewriteTransport struct { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/copilot_extra_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/copilot_extra_test.go index dc5d8028ce..425a5eacc0 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/copilot_extra_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/copilot_extra_test.go @@ -10,7 +10,7 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestNewCopilotAuth(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/oauth.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/oauth.go index 61d015fa64..9994cf7257 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/oauth.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/oauth.go @@ -11,8 +11,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/token.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/token.go index fc013c5387..657428a982 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/token.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/copilot/token.go @@ -9,7 +9,7 @@ import ( "os" "path/filepath" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" ) // CopilotTokenStorage stores OAuth2 token information for GitHub Copilot API authentication. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/auth_diff.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/auth_diff.go index 4b6e600852..267edec793 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/auth_diff.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/auth_diff.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // BuildAuthChangeDetails computes a redacted, human-readable list of auth field changes. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/config_diff.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/config_diff.go index 60fc776f21..2a8d73eca6 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/config_diff.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/config_diff.go @@ -6,7 +6,7 @@ import ( "reflect" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) // BuildConfigChangeDetails computes a redacted, human-readable list of config changes. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/config_diff_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/config_diff_test.go index 302889f3bf..41cbe13610 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/config_diff_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/config_diff_test.go @@ -1,7 +1,7 @@ package diff import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" "testing" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/diff_generated.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/diff_generated.go index 3d65600f66..f564fd2e30 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/diff_generated.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/diff_generated.go @@ -1,9 +1,9 @@ -// Code generated by github.com/router-for-me/CLIProxyAPI/v6/cmd/codegen; DO NOT EDIT. +// Code generated by github.com/kooshapari/cliproxyapi-plusplus/v6/cmd/codegen; DO NOT EDIT. package diff import ( "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) // BuildConfigChangeDetailsGeneratedProviders computes changes for generated dedicated providers. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/model_hash.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/model_hash.go index 2d003c115a..63ebf69aa4 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/model_hash.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/model_hash.go @@ -7,7 +7,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) const modelHashSalt = "auth-model-hash:v1" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/model_hash_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/model_hash_test.go index b01b3582f7..4e4ada991e 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/model_hash_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/model_hash_test.go @@ -3,7 +3,7 @@ package diff import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestComputeOpenAICompatModelsHash_Deterministic(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/models_summary.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/models_summary.go index 52e35e4968..cc107c368b 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/models_summary.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/models_summary.go @@ -4,7 +4,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) type GeminiModelsSummary struct { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/oauth_excluded.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/oauth_excluded.go index d6b1c4f30c..75f2f61594 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/oauth_excluded.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/oauth_excluded.go @@ -5,7 +5,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) type ExcludedModelsSummary struct { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/oauth_excluded_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/oauth_excluded_test.go index 3577c3701e..f89366df79 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/oauth_excluded_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/oauth_excluded_test.go @@ -3,7 +3,7 @@ package diff import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestSummarizeExcludedModels_NormalizesAndDedupes(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/oauth_model_alias.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/oauth_model_alias.go index 4aa8b14617..f1f61eb294 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/oauth_model_alias.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/oauth_model_alias.go @@ -5,7 +5,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) type OAuthModelAliasSummary struct { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/openai_compat.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/openai_compat.go index 0224b06621..e149f5d822 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/openai_compat.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/openai_compat.go @@ -6,7 +6,7 @@ import ( "strconv" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) // DiffOpenAICompatibility produces human-readable change descriptions. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/openai_compat_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/openai_compat_test.go index 029b24c0ed..934ca76380 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/openai_compat_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/diff/openai_compat_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestDiffOpenAICompatibility(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/gemini/gemini_auth.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/gemini/gemini_auth.go index 6a9833341b..6553cd26d2 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/gemini/gemini_auth.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/gemini/gemini_auth.go @@ -14,11 +14,11 @@ import ( "net/url" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/browser" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/codex" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/browser" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "golang.org/x/net/proxy" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/gemini/gemini_auth_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/gemini/gemini_auth_test.go index f1b962bc33..c091a5912e 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/gemini/gemini_auth_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/gemini/gemini_auth_test.go @@ -12,7 +12,7 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" "golang.org/x/oauth2" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/gemini/gemini_token.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/gemini/gemini_token.go index b06e0f8532..1fb90dae57 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/gemini/gemini_token.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/gemini/gemini_token.go @@ -10,7 +10,7 @@ import ( "path/filepath" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/iflow/iflow_auth.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/iflow/iflow_auth.go index a24107a2bb..d1c8fe26b2 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/iflow/iflow_auth.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/iflow/iflow_auth.go @@ -13,8 +13,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/iflow/iflow_token.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/iflow/iflow_token.go index c75dd5ec34..b67f7148c0 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/iflow/iflow_token.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/iflow/iflow_token.go @@ -6,7 +6,7 @@ import ( "os" "path/filepath" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" ) // IFlowTokenStorage persists iFlow OAuth credentials alongside the derived API key. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kilo/kilo_token.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kilo/kilo_token.go index 6a5fa30ee7..bb09922167 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kilo/kilo_token.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kilo/kilo_token.go @@ -8,7 +8,7 @@ import ( "os" "path/filepath" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kimi/kimi.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kimi/kimi.go index 5337fc1c0d..42978882b7 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kimi/kimi.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kimi/kimi.go @@ -15,8 +15,8 @@ import ( "time" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kimi/token.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kimi/token.go index 29fb3ea6f6..983cdc306a 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kimi/token.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kimi/token.go @@ -10,7 +10,7 @@ import ( "path/filepath" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" ) // KimiTokenStorage stores OAuth2 token information for Kimi API authentication. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/aws_auth.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/aws_auth.go index 1118ea1a9a..e798a85b79 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/aws_auth.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/aws_auth.go @@ -13,8 +13,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/aws_extra_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/aws_extra_test.go index 32cf942ff8..434b91edf4 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/aws_extra_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/aws_extra_test.go @@ -11,7 +11,7 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestNewKiroAuth(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/background_refresh.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/background_refresh.go index 75427011b7..2f52798786 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/background_refresh.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/background_refresh.go @@ -7,7 +7,7 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" "golang.org/x/sync/semaphore" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/codewhisperer_client.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/codewhisperer_client.go index b1860a7936..8ba06d266a 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/codewhisperer_client.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/codewhisperer_client.go @@ -10,8 +10,8 @@ import ( "time" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/oauth.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/oauth.go index 31c1d64398..7b0921169a 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/oauth.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/oauth.go @@ -10,8 +10,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/oauth_web.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/oauth_web.go index 0d7fab4940..f02621fc6c 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/oauth_web.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/oauth_web.go @@ -16,8 +16,8 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/refresh_manager.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/refresh_manager.go index fa7394be4e..ef58852e08 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/refresh_manager.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/refresh_manager.go @@ -5,8 +5,8 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/social_auth.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/social_auth.go index a5c9160579..aab71c6867 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/social_auth.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/social_auth.go @@ -18,9 +18,9 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/browser" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/browser" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" "golang.org/x/term" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/sso_oidc.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/sso_oidc.go index 2fe4c0cabe..3eed67fc49 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/sso_oidc.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/sso_oidc.go @@ -20,9 +20,9 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/browser" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/browser" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/token.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/token.go index 5959ed779b..01e373b5b1 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/token.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/token.go @@ -7,7 +7,7 @@ import ( "path/filepath" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" ) // KiroTokenStorage holds the persistent token data for Kiro authentication. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/usage_checker.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/usage_checker.go index 0bca98af7f..ebdd0a1587 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/usage_checker.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/kiro/usage_checker.go @@ -11,8 +11,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" ) // UsageQuotaResponse represents the API response structure for usage quota checking. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/qwen/qwen_auth.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/qwen/qwen_auth.go index f84a3ad1eb..db66d44458 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/qwen/qwen_auth.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/qwen/qwen_auth.go @@ -13,8 +13,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/qwen/qwen_token.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/qwen/qwen_token.go index 10104bf89c..64c1890c03 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/qwen/qwen_token.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/qwen/qwen_token.go @@ -10,7 +10,7 @@ import ( "path/filepath" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" ) // QwenTokenStorage stores OAuth2 token information for Alibaba Qwen API authentication. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/config.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/config.go index 1e9820f276..84ccae4707 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/config.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/config.go @@ -11,11 +11,11 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/diff" - kiroauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/kiro" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/cursorstorage" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/diff" + kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kiro" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/cursorstorage" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/config_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/config_test.go index c60bf23080..118b71353e 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/config_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/config_test.go @@ -1,7 +1,7 @@ package synthesizer import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" "os" "path/filepath" "testing" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/context.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/context.go index 8dadc9026a..79d1cf1d08 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/context.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/context.go @@ -3,7 +3,7 @@ package synthesizer import ( "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) // SynthesisContext provides the context needed for auth synthesis. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/file.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/file.go index 65aefc756d..30a5aa467b 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/file.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/file.go @@ -9,8 +9,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/runtime/geminicli" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/runtime/geminicli" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // FileSynthesizer generates Auth entries from OAuth JSON files. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/file_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/file_test.go index 88873a6138..e549822a9a 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/file_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/file_test.go @@ -8,8 +8,8 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestNewFileSynthesizer(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/helpers.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/helpers.go index a1c7ac4387..1fdceeeae1 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/helpers.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/helpers.go @@ -8,9 +8,9 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/diff" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/diff" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) const stableIDGeneratorHashKey = "auth-stable-id-generator:v1" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/helpers_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/helpers_test.go index 5840f6716e..b96620d0e9 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/helpers_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/helpers_test.go @@ -7,9 +7,9 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/diff" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/diff" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestStableIDGenerator_Next_DoesNotUseLegacySHA256(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/interface.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/interface.go index 1a9aedc965..76fbd8756b 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/interface.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/interface.go @@ -5,7 +5,7 @@ package synthesizer import ( - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // AuthSynthesizer defines the interface for generating Auth entries from various sources. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/synthesizer_generated.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/synthesizer_generated.go index f5f8a8a8d4..03c29d8fd8 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/synthesizer_generated.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/synthesizer/synthesizer_generated.go @@ -1,8 +1,8 @@ -// Code generated by github.com/router-for-me/CLIProxyAPI/v6/cmd/codegen; DO NOT EDIT. +// Code generated by github.com/kooshapari/cliproxyapi-plusplus/v6/cmd/codegen; DO NOT EDIT. package synthesizer import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) // getDedicatedProviderEntries returns the config entries for a dedicated provider. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/vertex/vertex_credentials.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/vertex/vertex_credentials.go index 2d8c107662..aef8917dac 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/vertex/vertex_credentials.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/auth/vertex/vertex_credentials.go @@ -9,7 +9,7 @@ import ( "path/filepath" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/anthropic_login.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/anthropic_login.go index f8bedb4216..d70f135afd 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/anthropic_login.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/anthropic_login.go @@ -6,9 +6,9 @@ import ( "fmt" "os" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/claude" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/claude" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/antigravity_login.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/antigravity_login.go index 991c558ee4..8718224ac9 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/antigravity_login.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/antigravity_login.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/auth_dir.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/auth_dir.go index 803225fd6e..244fed3e19 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/auth_dir.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/auth_dir.go @@ -6,7 +6,7 @@ import ( "path/filepath" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" ) func resolveAuthDir(cfgAuthDir string) (string, error) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/auth_manager.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/auth_manager.go index 2a3407be49..6517938346 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/auth_manager.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/auth_manager.go @@ -1,7 +1,7 @@ package cmd import ( - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" ) // newAuthManager creates a new authentication manager instance with all supported diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/config_cast.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/config_cast.go index bab4238a74..29f96dd229 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/config_cast.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/config_cast.go @@ -3,9 +3,9 @@ package cmd import ( "unsafe" - internalconfig "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + internalconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + sdkconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) // castToInternalConfig converts a pkg/llmproxy/config.Config pointer to an internal/config.Config pointer. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/cursor_login.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/cursor_login.go index e44e268c92..6921a94771 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/cursor_login.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/cursor_login.go @@ -6,7 +6,7 @@ import ( "path/filepath" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/cursor_login_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/cursor_login_test.go index 08e0f0064b..a3b0950441 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/cursor_login_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/cursor_login_test.go @@ -8,7 +8,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestDoCursorLogin_TokenFileMode_WritesTokenAndConfig(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/generic_apikey_login.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/generic_apikey_login.go index 09919cb530..9c2a0b2593 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/generic_apikey_login.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/generic_apikey_login.go @@ -8,7 +8,7 @@ import ( "path/filepath" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/github_copilot_login.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/github_copilot_login.go index 0be27d00d6..de049f940c 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/github_copilot_login.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/github_copilot_login.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/iflow_cookie.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/iflow_cookie.go index 809ff5ae09..4e6ddfe694 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/iflow_cookie.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/iflow_cookie.go @@ -9,8 +9,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/iflow" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/iflow" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) // DoIFlowCookieAuth performs the iFlow cookie-based authentication. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/iflow_cookie_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/iflow_cookie_test.go index 791d4b777e..4b84e06f54 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/iflow_cookie_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/iflow_cookie_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestGetAuthFilePath_UsesDefaultAuthDirAndFallbackName(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/iflow_login.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/iflow_login.go index aec09e2c9c..ea1aec6aa2 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/iflow_login.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/iflow_login.go @@ -5,8 +5,8 @@ import ( "errors" "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/kilo_login.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/kilo_login.go index f7678f2110..f93cba66cb 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/kilo_login.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/kilo_login.go @@ -5,7 +5,7 @@ import ( "io" "os" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/kimi_login.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/kimi_login.go index 12111321ab..0e65cf6a05 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/kimi_login.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/kimi_login.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/kiro_login.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/kiro_login.go index a138c46134..2467ab563f 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/kiro_login.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/kiro_login.go @@ -5,8 +5,8 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/login.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/login.go index a87156217e..9c9a3dbf34 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/login.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/login.go @@ -17,11 +17,11 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/gemini" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/gemini" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/minimax_login.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/minimax_login.go index cbfbc72a59..5b316bd2f7 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/minimax_login.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/minimax_login.go @@ -8,7 +8,7 @@ import ( "path/filepath" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/openai_login.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/openai_login.go index aeb1f71a3f..4ad06a71d7 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/openai_login.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/openai_login.go @@ -6,9 +6,9 @@ import ( "fmt" "os" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/codex" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/qwen_login.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/qwen_login.go index 33595b782d..8980c6cc08 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/qwen_login.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/qwen_login.go @@ -5,8 +5,8 @@ import ( "errors" "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/roo_kilo_login_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/roo_kilo_login_test.go index 6d8667db3f..5a8b794b24 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/roo_kilo_login_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/roo_kilo_login_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestRunRooLoginWithRunner_Success(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/roo_login.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/roo_login.go index cbefa7a65d..ce0c3127ad 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/roo_login.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/roo_login.go @@ -5,7 +5,7 @@ import ( "io" "os" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/run.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/run.go index 43ec4948da..997e9d6aeb 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/run.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/run.go @@ -10,9 +10,9 @@ import ( "syscall" "time" - internalapi "github.com/router-for-me/CLIProxyAPI/v6/internal/api" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy" + internalapi "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/api" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/setup.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/setup.go index b9ac655384..fe30592e78 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/setup.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/setup.go @@ -7,8 +7,8 @@ import ( "strconv" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" ) type setupOption struct { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/setup_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/setup_test.go index 712536120c..fb749d151e 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/setup_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/setup_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestSetupOptions_ContainsCursorLogin(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/thegent_login.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/thegent_login.go index f9020ce206..5aee5ae10b 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/thegent_login.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/thegent_login.go @@ -6,7 +6,7 @@ import ( "os" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/vertex_import.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/vertex_import.go index c1f154808c..29f9f4f8d3 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/vertex_import.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/cmd/vertex_import.go @@ -9,11 +9,11 @@ import ( "os" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/vertex" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/vertex" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/config/config.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/config/config.go index 20cda78ae8..e01ad6b230 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/config/config.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/config/config.go @@ -19,7 +19,7 @@ import ( "golang.org/x/crypto/bcrypt" "gopkg.in/yaml.v3" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/ratelimit" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/ratelimit" ) const ( diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/aistudio_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/aistudio_executor.go index fa63d19f81..98d476bbec 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/aistudio_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/aistudio_executor.go @@ -13,12 +13,12 @@ import ( "net/url" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/wsrelay" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/wsrelay" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/antigravity_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/antigravity_executor.go index 1c624e572a..97c9ced34e 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/antigravity_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/antigravity_executor.go @@ -24,15 +24,15 @@ import ( "time" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/antigravity_executor_buildrequest_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/antigravity_executor_buildrequest_test.go index a70374d0db..9cfed5da75 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/antigravity_executor_buildrequest_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/antigravity_executor_buildrequest_test.go @@ -6,7 +6,7 @@ import ( "io" "testing" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestAntigravityBuildRequest_SanitizesGeminiToolSchema(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/auth_status_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/auth_status_test.go index e69dc80ef4..ffaaa65125 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/auth_status_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/auth_status_test.go @@ -5,8 +5,8 @@ import ( "net/http" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/wsrelay" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/wsrelay" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" ) func TestAIStudioHttpRequestMissingAuthStatus(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/claude_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/claude_executor.go index f4224127f7..e8346a7cfd 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/claude_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/claude_executor.go @@ -15,14 +15,14 @@ import ( "github.com/andybalholm/brotli" "github.com/klauspost/compress/zstd" - claudeauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/claude" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + claudeauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/claude" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/claude_executor_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/claude_executor_test.go index 4176a42f69..283e6d1f0f 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/claude_executor_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/claude_executor_test.go @@ -8,10 +8,10 @@ import ( "net/http/httptest" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_executor.go index fb5f47ed11..fbbe47516e 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_executor.go @@ -11,14 +11,14 @@ import ( "strings" "time" - codexauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + codexauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/codex" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_executor_compact_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_executor_compact_test.go index cf252043f9..b6a7c6e52b 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_executor_compact_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_executor_compact_test.go @@ -7,10 +7,10 @@ import ( "net/http/httptest" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_executor_cpb0106_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_executor_cpb0106_test.go index f1a7e2034c..da3bae4d4a 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_executor_cpb0106_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_executor_cpb0106_test.go @@ -10,10 +10,10 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_executor_cpb0227_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_executor_cpb0227_test.go index de981f6398..19973b216c 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_executor_cpb0227_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_executor_cpb0227_test.go @@ -9,10 +9,10 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" ) func TestCodexExecutor_CPB0227_ExecuteFailsWhenStreamClosesBeforeResponseCompleted(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_websockets_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_websockets_executor.go index a6a91d68b7..8575edb0d4 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_websockets_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/codex_websockets_executor.go @@ -17,13 +17,13 @@ import ( "github.com/google/uuid" "github.com/gorilla/websocket" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/gemini_cli_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/gemini_cli_executor.go index 4f55ac378b..5d7396a3fb 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/gemini_cli_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/gemini_cli_executor.go @@ -17,15 +17,15 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/runtime/geminicli" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/runtime/geminicli" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/gemini_cli_executor_model_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/gemini_cli_executor_model_test.go index 0f3d7ae42b..e90eb764fb 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/gemini_cli_executor_model_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/gemini_cli_executor_model_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/gemini_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/gemini_executor.go index 4a5f2b7ed4..ffc2f0bf97 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/gemini_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/gemini_executor.go @@ -14,13 +14,13 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/gemini_vertex_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/gemini_vertex_executor.go index 6a657392b6..dcf4230c4a 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/gemini_vertex_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/gemini_vertex_executor.go @@ -14,13 +14,13 @@ import ( "strings" "time" - vertexauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/vertex" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + vertexauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/vertex" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/github_copilot_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/github_copilot_executor.go index 0f4df92db5..8a5d85da22 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/github_copilot_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/github_copilot_executor.go @@ -12,12 +12,12 @@ import ( "time" "github.com/google/uuid" - copilotauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/copilot" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + copilotauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/copilot" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/github_copilot_executor_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/github_copilot_executor_test.go index e57e4f51d9..3ad3d74cd2 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/github_copilot_executor_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/github_copilot_executor_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/iflow_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/iflow_executor.go index cadd5cf107..41b3de41cb 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/iflow_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/iflow_executor.go @@ -14,12 +14,12 @@ import ( "time" "github.com/google/uuid" - iflowauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/iflow" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + iflowauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/iflow" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/iflow_executor_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/iflow_executor_test.go index 2686977921..7186d2b254 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/iflow_executor_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/iflow_executor_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" ) func TestIFlowExecutorParseSuffix(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/kilo_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/kilo_executor.go index 5599dd5a6e..ae7bad7a44 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/kilo_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/kilo_executor.go @@ -11,13 +11,13 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/kimi_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/kimi_executor.go index b7ee53b55d..b091200b59 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/kimi_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/kimi_executor.go @@ -13,12 +13,12 @@ import ( "strings" "time" - kimiauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/kimi" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + kimiauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kimi" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/kiro_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/kiro_executor.go index a4afc0512a..ba0a353792 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/kiro_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/kiro_executor.go @@ -23,16 +23,16 @@ import ( "time" "github.com/google/uuid" - kiroclaude "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/claude" - kirocommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/common" - kiroopenai "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/openai" - kiroauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/kiro" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + kiroclaude "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/claude" + kirocommon "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/common" + kiroopenai "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/openai" + kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kiro" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/kiro_executor_metadata_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/kiro_executor_metadata_test.go index 0ad89b6523..d3e3e209b4 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/kiro_executor_metadata_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/kiro_executor_metadata_test.go @@ -3,7 +3,7 @@ package executor import ( "testing" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestGetEffectiveProfileArnWithWarning_UsesCamelCaseIDCMetadata(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/logging_helpers.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/logging_helpers.go index f74b1513c1..11f2b68787 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/logging_helpers.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/logging_helpers.go @@ -11,9 +11,9 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/logging" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/logging_helpers_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/logging_helpers_test.go index ffbb344c54..af0608c767 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/logging_helpers_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/logging_helpers_test.go @@ -10,7 +10,7 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestRecordAPIResponseMetadataRecordsTimestamp(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/oauth_upstream.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/oauth_upstream.go index b50acfb059..e0245e4950 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/oauth_upstream.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/oauth_upstream.go @@ -3,8 +3,8 @@ package executor import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func resolveOAuthBaseURL(cfg *config.Config, channel, defaultBaseURL string, auth *cliproxyauth.Auth) string { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/oauth_upstream_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/oauth_upstream_test.go index 1896018420..d75be44e5f 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/oauth_upstream_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/oauth_upstream_test.go @@ -3,7 +3,7 @@ package executor import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestResolveOAuthBaseURLWithOverride_PreferenceOrder(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/openai_compat_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/openai_compat_executor.go index bb19ba2905..8104e24676 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/openai_compat_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/openai_compat_executor.go @@ -11,12 +11,12 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/openai_compat_executor_compact_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/openai_compat_executor_compact_test.go index 8109fb2570..3884a49b12 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/openai_compat_executor_compact_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/openai_compat_executor_compact_test.go @@ -7,10 +7,10 @@ import ( "net/http/httptest" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/openai_models_fetcher.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/openai_models_fetcher.go index 48b62d7a4b..844e97c5fb 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/openai_models_fetcher.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/openai_models_fetcher.go @@ -9,9 +9,9 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/openai_models_fetcher_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/openai_models_fetcher_test.go index 8b4e2ffb3f..bb52872e2d 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/openai_models_fetcher_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/openai_models_fetcher_test.go @@ -6,8 +6,8 @@ import ( "net/http/httptest" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestResolveOpenAIModelsURL(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/payload_helpers.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/payload_helpers.go index 25810fc476..67e3cf99cd 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/payload_helpers.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/payload_helpers.go @@ -4,9 +4,9 @@ import ( "encoding/json" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/proxy_helpers.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/proxy_helpers.go index e5148872cb..442cd406c2 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/proxy_helpers.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/proxy_helpers.go @@ -11,8 +11,8 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" "golang.org/x/net/proxy" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/qwen_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/qwen_executor.go index 4a60958373..b65bac1a69 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/qwen_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/qwen_executor.go @@ -10,12 +10,12 @@ import ( "strings" "time" - qwenauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/qwen" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + qwenauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/qwen" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/qwen_executor_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/qwen_executor_test.go index b8d8b6c7f0..26cc5e0677 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/qwen_executor_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/qwen_executor_test.go @@ -3,7 +3,7 @@ package executor import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" ) func TestQwenExecutorParseSuffix(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/thinking_providers.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/thinking_providers.go index d64497bccb..3be8b1cda9 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/thinking_providers.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/thinking_providers.go @@ -1,12 +1,12 @@ package executor import ( - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking/provider/antigravity" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking/provider/claude" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking/provider/codex" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking/provider/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking/provider/geminicli" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking/provider/iflow" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking/provider/kimi" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking/provider/openai" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking/provider/antigravity" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking/provider/claude" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking/provider/codex" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking/provider/gemini" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking/provider/geminicli" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking/provider/iflow" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking/provider/kimi" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking/provider/openai" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/usage_helpers.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/usage_helpers.go index fe06ee58cb..21d4177489 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/usage_helpers.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/executor/usage_helpers.go @@ -10,8 +10,8 @@ import ( "time" "github.com/gin-gonic/gin" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/interfaces/error_message.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/interfaces/error_message.go index 52397cd743..501103a97f 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/interfaces/error_message.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/interfaces/error_message.go @@ -4,7 +4,7 @@ package interfaces import ( - internalinterfaces "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" + internalinterfaces "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" ) // ErrorMessage is an alias to the internal ErrorMessage, ensuring type compatibility diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/interfaces/types.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/interfaces/types.go index 9fb1e7f3b8..3155d73fca 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/interfaces/types.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/interfaces/types.go @@ -3,7 +3,7 @@ // transformation operations, maintaining compatibility with the SDK translator package. package interfaces -import sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" +import sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" // Backwards compatible aliases for translator function types. type TranslateRequestFunc = sdktranslator.RequestTransform diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/logging/gin_logger.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/logging/gin_logger.go index 8232d51bc1..3ebe094dd8 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/logging/gin_logger.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/logging/gin_logger.go @@ -12,7 +12,7 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/logging/global_logger.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/logging/global_logger.go index de4a6ff85e..4db7ffe3fb 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/logging/global_logger.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/logging/global_logger.go @@ -10,8 +10,8 @@ import ( "sync" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" "gopkg.in/natefinch/lumberjack.v2" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/logging/request_logger.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/logging/request_logger.go index 2aebb888cc..06c84e1e1c 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/logging/request_logger.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/logging/request_logger.go @@ -21,9 +21,9 @@ import ( "github.com/klauspost/compress/zstd" log "github.com/sirupsen/logrus" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/buildinfo" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/buildinfo" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" ) var requestLogID atomic.Uint64 diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/managementasset/updater.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/managementasset/updater.go index 201b179481..2aa68ce718 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/managementasset/updater.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/managementasset/updater.go @@ -17,9 +17,9 @@ import ( "sync/atomic" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + sdkconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" log "github.com/sirupsen/logrus" "golang.org/x/sync/singleflight" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/registry/model_registry.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/registry/model_registry.go index 85906a8948..eef2ed0982 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/registry/model_registry.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/registry/model_registry.go @@ -12,7 +12,7 @@ import ( "sync" "time" - misc "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" + misc "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/aistudio_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/aistudio_executor.go index fa63d19f81..98d476bbec 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/aistudio_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/aistudio_executor.go @@ -13,12 +13,12 @@ import ( "net/url" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/wsrelay" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/wsrelay" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/antigravity_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/antigravity_executor.go index ca5994a120..32e2f3091a 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/antigravity_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/antigravity_executor.go @@ -24,15 +24,15 @@ import ( "time" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/antigravity_executor_buildrequest_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/antigravity_executor_buildrequest_test.go index a70374d0db..9cfed5da75 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/antigravity_executor_buildrequest_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/antigravity_executor_buildrequest_test.go @@ -6,7 +6,7 @@ import ( "io" "testing" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestAntigravityBuildRequest_SanitizesGeminiToolSchema(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/claude_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/claude_executor.go index 82b44771d7..097d26574e 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/claude_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/claude_executor.go @@ -15,14 +15,14 @@ import ( "github.com/andybalholm/brotli" "github.com/klauspost/compress/zstd" - claudeauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/claude" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + claudeauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/claude" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/claude_executor_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/claude_executor_test.go index ec1b556342..7a601e4ed5 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/claude_executor_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/claude_executor_test.go @@ -5,8 +5,8 @@ import ( "net/http" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/codex_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/codex_executor.go index fb5f47ed11..fbbe47516e 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/codex_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/codex_executor.go @@ -11,14 +11,14 @@ import ( "strings" "time" - codexauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + codexauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/codex" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/codex_websockets_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/codex_websockets_executor.go index a29c996c21..c1119fef75 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/codex_websockets_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/codex_websockets_executor.go @@ -17,13 +17,13 @@ import ( "github.com/google/uuid" "github.com/gorilla/websocket" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/codex_websockets_executor_headers_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/codex_websockets_executor_headers_test.go index fa6ac332e8..5d8ac856ce 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/codex_websockets_executor_headers_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/codex_websockets_executor_headers_test.go @@ -8,7 +8,7 @@ import ( "testing" "github.com/gin-gonic/gin" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestApplyCodexWebsocketHeaders_IncludesResponsesWebsocketsBetaByDefault(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/gemini_cli_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/gemini_cli_executor.go index eac2991a96..5f70c0b323 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/gemini_cli_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/gemini_cli_executor.go @@ -17,15 +17,15 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/runtime/geminicli" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/runtime/geminicli" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/gemini_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/gemini_executor.go index 4a5f2b7ed4..ffc2f0bf97 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/gemini_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/gemini_executor.go @@ -14,13 +14,13 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/gemini_vertex_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/gemini_vertex_executor.go index add0f4578b..ca53d1e8ef 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/gemini_vertex_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/gemini_vertex_executor.go @@ -14,13 +14,13 @@ import ( "strings" "time" - vertexauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/vertex" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + vertexauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/vertex" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/github_copilot_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/github_copilot_executor.go index 8a572cd109..2d59f1af01 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/github_copilot_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/github_copilot_executor.go @@ -12,12 +12,12 @@ import ( "time" "github.com/google/uuid" - copilotauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/copilot" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + copilotauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/copilot" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/github_copilot_executor_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/github_copilot_executor_test.go index f54b59f45c..552aa9b6ac 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/github_copilot_executor_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/github_copilot_executor_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/iflow_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/iflow_executor.go index 4d3eb11b79..5898ff0bc1 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/iflow_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/iflow_executor.go @@ -14,12 +14,12 @@ import ( "time" "github.com/google/uuid" - iflowauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/iflow" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + iflowauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/iflow" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/iflow_executor_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/iflow_executor_test.go index 3a1ba2e43f..cfaf1ad9a0 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/iflow_executor_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/iflow_executor_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" ) func TestIFlowExecutorParseSuffix(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/kilo_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/kilo_executor.go index 5599dd5a6e..ae7bad7a44 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/kilo_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/kilo_executor.go @@ -11,13 +11,13 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/kimi_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/kimi_executor.go index b7ee53b55d..b091200b59 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/kimi_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/kimi_executor.go @@ -13,12 +13,12 @@ import ( "strings" "time" - kimiauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/kimi" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + kimiauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kimi" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/kiro_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/kiro_executor.go index 40bc97bc3c..b742f0e042 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/kiro_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/kiro_executor.go @@ -21,16 +21,16 @@ import ( "time" "github.com/google/uuid" - kiroclaude "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/claude" - kirocommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/common" - kiroopenai "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/kiro/openai" - kiroauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/kiro" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + kiroclaude "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/claude" + kirocommon "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/common" + kiroopenai "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/kiro/openai" + kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kiro" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/kiro_executor_extra_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/kiro_executor_extra_test.go index 0efae05df4..3437d408e9 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/kiro_executor_extra_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/kiro_executor_extra_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - kiroauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/kiro" + kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kiro" ) func TestKiroExecutor_MapModelToKiro(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/logging_helpers.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/logging_helpers.go index f74b1513c1..11f2b68787 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/logging_helpers.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/logging_helpers.go @@ -11,9 +11,9 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/logging" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/logging_helpers_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/logging_helpers_test.go index b6c41db21f..d55500f593 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/logging_helpers_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/logging_helpers_test.go @@ -10,7 +10,7 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestRecordAPIResponseMetadataRecordsTimestamp(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/oauth_upstream.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/oauth_upstream.go index b50acfb059..e0245e4950 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/oauth_upstream.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/oauth_upstream.go @@ -3,8 +3,8 @@ package executor import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func resolveOAuthBaseURL(cfg *config.Config, channel, defaultBaseURL string, auth *cliproxyauth.Auth) string { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/oauth_upstream_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/oauth_upstream_test.go index 1896018420..d75be44e5f 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/oauth_upstream_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/oauth_upstream_test.go @@ -3,7 +3,7 @@ package executor import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestResolveOAuthBaseURLWithOverride_PreferenceOrder(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/openai_compat_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/openai_compat_executor.go index 9faf1dc1b1..17cb9ec60c 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/openai_compat_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/openai_compat_executor.go @@ -11,12 +11,12 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/openai_compat_executor_compact_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/openai_compat_executor_compact_test.go index 41c1389a9c..fa1e015a8b 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/openai_compat_executor_compact_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/openai_compat_executor_compact_test.go @@ -8,10 +8,10 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/openai_models_fetcher.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/openai_models_fetcher.go index 48b62d7a4b..844e97c5fb 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/openai_models_fetcher.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/openai_models_fetcher.go @@ -9,9 +9,9 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/openai_models_fetcher_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/openai_models_fetcher_test.go index 8b4e2ffb3f..bb52872e2d 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/openai_models_fetcher_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/openai_models_fetcher_test.go @@ -6,8 +6,8 @@ import ( "net/http/httptest" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestResolveOpenAIModelsURL(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/payload_helpers.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/payload_helpers.go index 25810fc476..67e3cf99cd 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/payload_helpers.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/payload_helpers.go @@ -4,9 +4,9 @@ import ( "encoding/json" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/proxy_helpers.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/proxy_helpers.go index e5148872cb..442cd406c2 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/proxy_helpers.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/proxy_helpers.go @@ -11,8 +11,8 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" "golang.org/x/net/proxy" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/qwen_executor.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/qwen_executor.go index f7d51dea2b..5b1cd76dea 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/qwen_executor.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/qwen_executor.go @@ -11,13 +11,13 @@ import ( "strings" "time" - qwenauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/qwen" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + qwenauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/qwen" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/qwen_executor_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/qwen_executor_test.go index 7be2f9ecec..c49a2f9c86 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/qwen_executor_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/qwen_executor_test.go @@ -7,11 +7,11 @@ import ( "net/http/httptest" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/thinking_providers.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/thinking_providers.go index d64497bccb..3be8b1cda9 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/thinking_providers.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/thinking_providers.go @@ -1,12 +1,12 @@ package executor import ( - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking/provider/antigravity" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking/provider/claude" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking/provider/codex" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking/provider/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking/provider/geminicli" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking/provider/iflow" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking/provider/kimi" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking/provider/openai" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking/provider/antigravity" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking/provider/claude" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking/provider/codex" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking/provider/gemini" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking/provider/geminicli" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking/provider/iflow" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking/provider/kimi" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking/provider/openai" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/usage_helpers.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/usage_helpers.go index f9c7ceaaa3..cb8a18689b 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/usage_helpers.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/runtime/executor/usage_helpers.go @@ -10,8 +10,8 @@ import ( "time" "github.com/gin-gonic/gin" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/store/gitstore.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/store/gitstore.go index e0f34ff5b0..dc0abaa213 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/store/gitstore.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/store/gitstore.go @@ -18,7 +18,7 @@ import ( "github.com/go-git/go-git/v6/plumbing/object" "github.com/go-git/go-git/v6/plumbing/transport" "github.com/go-git/go-git/v6/plumbing/transport/http" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // gcInterval defines minimum time between garbage collection runs. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/store/gitstore_security_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/store/gitstore_security_test.go index 67fc36181e..7c0f62704b 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/store/gitstore_security_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/store/gitstore_security_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestResolveDeletePath_RejectsTraversalAndAbsolute(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/store/objectstore.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/store/objectstore.go index b38ef22dc5..14758a5787 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/store/objectstore.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/store/objectstore.go @@ -17,8 +17,8 @@ import ( "github.com/minio/minio-go/v7" "github.com/minio/minio-go/v7/pkg/credentials" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/store/objectstore_path_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/store/objectstore_path_test.go index 653c197670..fef467f23f 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/store/objectstore_path_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/store/objectstore_path_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestObjectResolveAuthPathRejectsTraversalFromAttributes(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/store/path_guard_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/store/path_guard_test.go index 12e5edd685..8f0ba1f706 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/store/path_guard_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/store/path_guard_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestObjectTokenStoreSaveRejectsPathOutsideAuthDir(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/store/postgresstore.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/store/postgresstore.go index 03e4fd4f39..ed7373977e 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/store/postgresstore.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/store/postgresstore.go @@ -14,8 +14,8 @@ import ( "time" _ "github.com/jackc/pgx/v5/stdlib" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/store/postgresstore_path_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/store/postgresstore_path_test.go index 50cf943722..03b379dc81 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/store/postgresstore_path_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/store/postgresstore_path_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestPostgresResolveAuthPathRejectsTraversalFromFileName(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/store/postgresstore_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/store/postgresstore_test.go index 2e4e9b9fac..58007b4faf 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/store/postgresstore_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/store/postgresstore_test.go @@ -10,7 +10,7 @@ import ( _ "modernc.org/sqlite" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestSyncAuthFromDatabase_PreservesLocalOnlyFiles(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/apply.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/apply.go index 81cd9ddf34..ca17143320 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/apply.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/apply.go @@ -4,7 +4,7 @@ package thinking import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/convert.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/convert.go index ea4c50c37c..64324e1cdd 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/convert.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/convert.go @@ -3,7 +3,7 @@ package thinking import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" ) // levelToBudgetMap defines the standard Level → Budget mapping. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/log_redaction_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/log_redaction_test.go index 3c66972fce..2c0976f542 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/log_redaction_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/log_redaction_test.go @@ -3,7 +3,7 @@ package thinking import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" log "github.com/sirupsen/logrus" "github.com/sirupsen/logrus/hooks/test" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/antigravity/apply.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/antigravity/apply.go index 4853285c30..10e6fc81bc 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/antigravity/apply.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/antigravity/apply.go @@ -9,8 +9,8 @@ package antigravity import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/antigravity/apply_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/antigravity/apply_test.go index b533664b8a..fc193cb055 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/antigravity/apply_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/antigravity/apply_test.go @@ -3,8 +3,8 @@ package antigravity import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/claude/apply.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/claude/apply.go index 6bf57e4e0f..83d70353be 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/claude/apply.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/claude/apply.go @@ -10,8 +10,8 @@ package claude import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/claude/apply_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/claude/apply_test.go index cafa7f0f08..841f4afc82 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/claude/apply_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/claude/apply_test.go @@ -3,8 +3,8 @@ package claude import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/codex/apply.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/codex/apply.go index 80bd037341..2d514b4d37 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/codex/apply.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/codex/apply.go @@ -9,8 +9,8 @@ package codex import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/gemini/apply.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/gemini/apply.go index 9ee28f16f2..0f81b3d195 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/gemini/apply.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/gemini/apply.go @@ -12,8 +12,8 @@ package gemini import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/gemini/apply_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/gemini/apply_test.go index 07c5870ba1..608fd1b977 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/gemini/apply_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/gemini/apply_test.go @@ -3,8 +3,8 @@ package gemini import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/geminicli/apply.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/geminicli/apply.go index e2bd81869c..aa160d9bd2 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/geminicli/apply.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/geminicli/apply.go @@ -5,8 +5,8 @@ package geminicli import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/geminicli/apply_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/geminicli/apply_test.go index e03c36d740..704b91dfdf 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/geminicli/apply_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/geminicli/apply_test.go @@ -3,8 +3,8 @@ package geminicli import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/iflow/apply.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/iflow/apply.go index f4be678830..26d37577ff 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/iflow/apply.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/iflow/apply.go @@ -11,8 +11,8 @@ package iflow import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/kimi/apply.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/kimi/apply.go index ec670e3929..8531a84461 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/kimi/apply.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/kimi/apply.go @@ -8,8 +8,8 @@ package kimi import ( "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/openai/apply.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/openai/apply.go index fe3a326988..093953c0df 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/openai/apply.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/provider/openai/apply.go @@ -8,8 +8,8 @@ package openai import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/types.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/types.go index c480c16694..fec0cb302a 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/types.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/types.go @@ -4,7 +4,7 @@ // thinking configurations across various AI providers (Claude, Gemini, OpenAI, iFlow). package thinking -import "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" +import "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" // ThinkingMode represents the type of thinking configuration mode. type ThinkingMode int diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/validate.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/validate.go index 04d9719a33..d9439c6407 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/validate.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/validate.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/validate_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/validate_test.go index ff0621cfa0..f32511989a 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/validate_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/thinking/validate_test.go @@ -3,7 +3,7 @@ package thinking import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" ) func TestValidateConfig_ClampBudgetToModelMinAndMaxBoundaries(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/antigravity_claude_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/antigravity_claude_request.go index a45ec918fe..edcac3b181 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/antigravity_claude_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/antigravity_claude_request.go @@ -8,11 +8,11 @@ package claude import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/cache" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/cache" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/antigravity_claude_request_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/antigravity_claude_request_test.go index 0f87df3e2b..aef1bd6c10 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/antigravity_claude_request_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/antigravity_claude_request_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/cache" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/cache" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/antigravity_claude_response.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/antigravity_claude_response.go index 50dd7138c1..0c0647fd42 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/antigravity_claude_response.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/antigravity_claude_response.go @@ -14,7 +14,7 @@ import ( "sync/atomic" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/cache" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/cache" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/antigravity_claude_response_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/antigravity_claude_response_test.go index 4e7cae0804..4352476e6b 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/antigravity_claude_response_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/antigravity_claude_response_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/cache" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/cache" ) // ============================================================================ diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/init.go index ca7c184503..4db8f2f0dc 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/claude/init.go @@ -1,9 +1,9 @@ package claude import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/gemini/antigravity_gemini_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/gemini/antigravity_gemini_request.go index 092b4bf664..27ec62b2b5 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/gemini/antigravity_gemini_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/gemini/antigravity_gemini_request.go @@ -9,8 +9,8 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/gemini/antigravity_gemini_response.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/gemini/antigravity_gemini_response.go index b06968a405..1bed6f0bf4 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/gemini/antigravity_gemini_response.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/gemini/antigravity_gemini_response.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/gemini/antigravity_gemini_response_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/gemini/antigravity_gemini_response_test.go index eeb5b1913f..f4177e5ca6 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/gemini/antigravity_gemini_response_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/gemini/antigravity_gemini_response_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/gemini/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/gemini/init.go index 382c4e3e6a..789a0e36c8 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/gemini/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/chat-completions/antigravity_openai_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/chat-completions/antigravity_openai_request.go index c1aab2340d..08f5eae2f2 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/chat-completions/antigravity_openai_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/chat-completions/antigravity_openai_request.go @@ -6,9 +6,9 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/chat-completions/antigravity_openai_response.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/chat-completions/antigravity_openai_response.go index 7d3167e185..3ad6cb7963 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/chat-completions/antigravity_openai_response.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/chat-completions/antigravity_openai_response.go @@ -15,7 +15,7 @@ import ( log "github.com/sirupsen/logrus" - geminiopenai "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/openai/chat-completions" + geminiopenai "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/openai/chat-completions" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/chat-completions/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/chat-completions/init.go index bed6e8a963..ab5f2c1b41 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/chat-completions/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/responses/antigravity_openai-responses_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/responses/antigravity_openai-responses_request.go index 5061d75db9..6df3a8eb20 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/responses/antigravity_openai-responses_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/responses/antigravity_openai-responses_request.go @@ -1,8 +1,8 @@ package responses import ( - antigravitygemini "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/antigravity/gemini" - geminiopenai "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/openai/responses" + antigravitygemini "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/antigravity/gemini" + geminiopenai "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/openai/responses" ) func ConvertOpenAIResponsesRequestToAntigravity(modelName string, inputRawJSON []byte, stream bool) []byte { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/responses/antigravity_openai-responses_response.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/responses/antigravity_openai-responses_response.go index 83d5816271..a74c1cc6de 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/responses/antigravity_openai-responses_response.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/responses/antigravity_openai-responses_response.go @@ -3,7 +3,7 @@ package responses import ( "context" - geminiopenai "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/openai/responses" + geminiopenai "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/openai/responses" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/responses/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/responses/init.go index 6132e33446..61bb64bbb3 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/responses/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/antigravity/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini-cli/claude_gemini-cli_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini-cli/claude_gemini-cli_request.go index ae046aa513..cf526e1f6d 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini-cli/claude_gemini-cli_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini-cli/claude_gemini-cli_request.go @@ -6,7 +6,7 @@ package geminiCLI import ( - claudegemini "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/claude/gemini" + claudegemini "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/claude/gemini" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini-cli/claude_gemini-cli_response.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini-cli/claude_gemini-cli_response.go index 6343af153a..8dc6aed3dd 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini-cli/claude_gemini-cli_response.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini-cli/claude_gemini-cli_response.go @@ -7,7 +7,7 @@ package geminiCLI import ( "context" - claudegemini "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/claude/gemini" + claudegemini "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/claude/gemini" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini-cli/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini-cli/init.go index bbd686ab75..fcabebc513 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini-cli/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini-cli/init.go @@ -1,9 +1,9 @@ package geminiCLI import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini/claude_gemini_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini/claude_gemini_request.go index c908ad0e63..a00ee153b6 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini/claude_gemini_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini/claude_gemini_request.go @@ -14,8 +14,8 @@ import ( "strings" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini/init.go index 28ab8a4452..8cde78a5db 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/openai/chat-completions/claude_openai_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/openai/chat-completions/claude_openai_request.go index 1dec184f6d..5b8128a03e 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/openai/chat-completions/claude_openai_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/openai/chat-completions/claude_openai_request.go @@ -14,7 +14,7 @@ import ( "strings" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/openai/chat-completions/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/openai/chat-completions/init.go index a73543038b..7fd204bf08 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/openai/chat-completions/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/openai/responses/claude_openai-responses_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/openai/responses/claude_openai-responses_request.go index 53138dcf32..522c65c88e 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/openai/responses/claude_openai-responses_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/openai/responses/claude_openai-responses_request.go @@ -9,7 +9,7 @@ import ( "strings" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/openai/responses/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/openai/responses/init.go index 92f455fe10..0a7c19f101 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/openai/responses/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/claude/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/claude/codex_claude_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/claude/codex_claude_request.go index edfd88001a..fc170d99af 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/claude/codex_claude_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/claude/codex_claude_request.go @@ -10,8 +10,8 @@ import ( "strconv" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/claude/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/claude/init.go index f1e8dd869c..fcc32b372d 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/claude/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/claude/init.go @@ -1,9 +1,9 @@ package claude import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini-cli/codex_gemini-cli_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini-cli/codex_gemini-cli_request.go index 4b00053ce0..ff65fd2d29 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini-cli/codex_gemini-cli_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini-cli/codex_gemini-cli_request.go @@ -6,7 +6,7 @@ package geminiCLI import ( - codexgemini "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/codex/gemini" + codexgemini "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/codex/gemini" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini-cli/codex_gemini-cli_response.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini-cli/codex_gemini-cli_response.go index aa7a48dc01..21a4f2150c 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini-cli/codex_gemini-cli_response.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini-cli/codex_gemini-cli_response.go @@ -8,7 +8,7 @@ import ( "context" "fmt" - codexgemini "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/codex/gemini" + codexgemini "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/codex/gemini" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini-cli/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini-cli/init.go index 3aea61e18f..b841aeef14 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini-cli/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini-cli/init.go @@ -1,9 +1,9 @@ package geminiCLI import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini/codex_gemini_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini/codex_gemini_request.go index f5513a7bd3..bd32270fe7 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini/codex_gemini_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini/codex_gemini_request.go @@ -12,8 +12,8 @@ import ( "strconv" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini/init.go index 095dc20d93..102c705147 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/openai/chat-completions/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/openai/chat-completions/init.go index eae51ab32b..44cb070e2e 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/openai/chat-completions/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/openai/responses/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/openai/responses/init.go index 2ed47e848a..e37530a62c 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/openai/responses/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/codex/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/claude/gemini-cli_claude_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/claude/gemini-cli_claude_request.go index 00d62ddc10..f71ac8f8d7 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/claude/gemini-cli_claude_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/claude/gemini-cli_claude_request.go @@ -9,7 +9,7 @@ import ( "bytes" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/claude/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/claude/init.go index 713147c785..b9ec445795 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/claude/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/claude/init.go @@ -1,9 +1,9 @@ package claude import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/gemini/gemini-cli_gemini_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/gemini/gemini-cli_gemini_request.go index 3daa4057db..148e5b879a 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/gemini/gemini-cli_gemini_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/gemini/gemini-cli_gemini_request.go @@ -8,8 +8,8 @@ package gemini import ( "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/gemini/gemini-cli_gemini_response.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/gemini/gemini-cli_gemini_response.go index cb48e3aa2a..33645e57ba 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/gemini/gemini-cli_gemini_response.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/gemini/gemini-cli_gemini_response.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/gemini/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/gemini/init.go index cfce5ec05e..6ef55a4425 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/gemini/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/chat-completions/gemini-cli_openai_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/chat-completions/gemini-cli_openai_request.go index ac6cba98b4..9cde641a86 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/chat-completions/gemini-cli_openai_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/chat-completions/gemini-cli_openai_request.go @@ -6,8 +6,8 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/chat-completions/gemini-cli_openai_response.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/chat-completions/gemini-cli_openai_response.go index 47e0d77f3a..2d74ccd029 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/chat-completions/gemini-cli_openai_response.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/chat-completions/gemini-cli_openai_response.go @@ -13,7 +13,7 @@ import ( "sync/atomic" "time" - geminiopenai "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/openai/chat-completions" + geminiopenai "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/openai/chat-completions" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/chat-completions/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/chat-completions/init.go index 6172ae4137..5b96ea2eef 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/chat-completions/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/responses/gemini-cli_openai-responses_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/responses/gemini-cli_openai-responses_request.go index 0d4fbfb9ec..1093d1f692 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/responses/gemini-cli_openai-responses_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/responses/gemini-cli_openai-responses_request.go @@ -1,8 +1,8 @@ package responses import ( - geminicligemini "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini-cli/gemini" - geminiopenai "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/openai/responses" + geminicligemini "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini-cli/gemini" + geminiopenai "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/openai/responses" ) func ConvertOpenAIResponsesRequestToGeminiCLI(modelName string, inputRawJSON []byte, stream bool) []byte { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/responses/gemini-cli_openai-responses_response.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/responses/gemini-cli_openai-responses_response.go index 195273a8bf..d9079bc533 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/responses/gemini-cli_openai-responses_response.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/responses/gemini-cli_openai-responses_response.go @@ -3,7 +3,7 @@ package responses import ( "context" - geminiopenai "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/openai/responses" + geminiopenai "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/openai/responses" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/responses/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/responses/init.go index 10de90dd8c..a9c10d4a53 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/responses/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini-cli/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/claude/gemini_claude_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/claude/gemini_claude_request.go index 5e27f23b29..b65843ea80 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/claude/gemini_claude_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/claude/gemini_claude_request.go @@ -9,7 +9,7 @@ import ( "bytes" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/claude/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/claude/init.go index 98969cfd1a..c30869a434 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/claude/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/claude/init.go @@ -1,9 +1,9 @@ package claude import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/common/sanitize.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/common/sanitize.go index 93131b075e..de40c93f62 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/common/sanitize.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/common/sanitize.go @@ -4,7 +4,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/gemini-cli/gemini_gemini-cli_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/gemini-cli/gemini_gemini-cli_request.go index 529f8047b7..129e0bb499 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/gemini-cli/gemini_gemini-cli_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/gemini-cli/gemini_gemini-cli_request.go @@ -8,8 +8,8 @@ package geminiCLI import ( "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/gemini-cli/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/gemini-cli/init.go index 7953fc4bd6..d1c2c280a0 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/gemini-cli/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/gemini-cli/init.go @@ -1,9 +1,9 @@ package geminiCLI import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/gemini/gemini_gemini_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/gemini/gemini_gemini_request.go index 6ce71d9583..b7585313ab 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/gemini/gemini_gemini_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/gemini/gemini_gemini_request.go @@ -6,8 +6,8 @@ package gemini import ( "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/gemini/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/gemini/init.go index d4ab316246..2327090f49 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/gemini/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) // Register a no-op response translator and a request normalizer for constant.Gemini→constant.Gemini. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/openai/chat-completions/gemini_openai_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/openai/chat-completions/gemini_openai_request.go index 893303cfcb..44f5c68802 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/openai/chat-completions/gemini_openai_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/openai/chat-completions/gemini_openai_request.go @@ -6,8 +6,8 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/openai/chat-completions/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/openai/chat-completions/init.go index 6b196a3455..ea2c9a00ec 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/openai/chat-completions/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/openai/responses/gemini_openai-responses_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/openai/responses/gemini_openai-responses_request.go index f76b9ea501..773d2840b9 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/openai/responses/gemini_openai-responses_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/openai/responses/gemini_openai-responses_request.go @@ -3,7 +3,7 @@ package responses import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/openai/responses/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/openai/responses/init.go index 0bfd525850..e9cb78347c 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/openai/responses/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/gemini/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/init.go index 402680c356..e10babb272 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/init.go @@ -1,39 +1,39 @@ package translator import ( - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/claude/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/claude/gemini-cli" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/claude/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/claude/openai/responses" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/claude/gemini" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/claude/gemini-cli" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/claude/openai/chat-completions" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/claude/openai/responses" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/codex/claude" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/codex/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/codex/gemini-cli" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/codex/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/codex/openai/responses" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/codex/claude" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/codex/gemini" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/codex/gemini-cli" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/codex/openai/chat-completions" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/codex/openai/responses" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini-cli/claude" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini-cli/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini-cli/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini-cli/openai/responses" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini-cli/claude" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini-cli/gemini" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini-cli/openai/chat-completions" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini-cli/openai/responses" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/claude" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/gemini-cli" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/gemini/openai/responses" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/claude" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/gemini" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/gemini-cli" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/openai/chat-completions" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/gemini/openai/responses" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/openai/claude" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/openai/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/openai/gemini-cli" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/openai/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/openai/openai/responses" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/openai/claude" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/openai/gemini" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/openai/gemini-cli" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/openai/openai/chat-completions" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/openai/openai/responses" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/antigravity/claude" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/antigravity/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/antigravity/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/antigravity/openai/responses" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/antigravity/claude" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/antigravity/gemini" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/antigravity/openai/chat-completions" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/antigravity/openai/responses" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/kiro/claude" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/kiro/openai" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/kiro/claude" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/kiro/openai" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/init.go index d2682c1490..828022d83b 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/init.go @@ -2,9 +2,9 @@ package claude import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_request.go index e392ee0512..5ed819c6a5 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_request.go @@ -12,7 +12,7 @@ import ( "unicode/utf8" "github.com/google/uuid" - kirocommon "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/kiro/common" + kirocommon "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/kiro/common" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_request_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_request_test.go index cfa3bbe5e9..82437c13c6 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_request_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_request_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - chatcompletions "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/claude/openai/chat-completions" + chatcompletions "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/claude/openai/chat-completions" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_response.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_response.go index 2aa0a523ac..f39a93281d 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_response.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_response.go @@ -10,10 +10,10 @@ import ( "strings" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" log "github.com/sirupsen/logrus" - kirocommon "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/kiro/common" + kirocommon "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/kiro/common" ) // generateThinkingSignature generates a signature for thinking content. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_response_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_response_test.go index 35ab421000..e7855544a7 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_response_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_response_test.go @@ -3,7 +3,7 @@ package claude import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_stream.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_stream.go index c86b6e023e..c36d0fba6d 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_stream.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_stream.go @@ -7,7 +7,7 @@ import ( "encoding/json" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" ) // BuildClaudeMessageStartEvent creates the message_start SSE event diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_tools.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_tools.go index ef7ccab2bd..61dda86d80 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_tools.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_claude_tools.go @@ -8,7 +8,7 @@ import ( "strings" "github.com/google/uuid" - kirocommon "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/kiro/common" + kirocommon "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/kiro/common" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_websearch.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_websearch.go index 6f45d24e08..76d90d8ca6 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_websearch.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/kiro_websearch.go @@ -12,7 +12,7 @@ import ( "time" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/tool_compression.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/tool_compression.go index ed7658cbb5..faa53cd4cf 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/tool_compression.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/claude/tool_compression.go @@ -7,7 +7,7 @@ import ( "encoding/json" "unicode/utf8" - kirocommon "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/kiro/common" + kirocommon "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/kiro/common" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/init.go index 00ae0b5075..df3a168b72 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/init.go @@ -2,9 +2,9 @@ package openai import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/kiro_openai.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/kiro_openai.go index 519bee1abb..3b0ce5a0ed 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/kiro_openai.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/kiro_openai.go @@ -11,8 +11,8 @@ import ( "encoding/json" "strings" - kirocommon "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/kiro/common" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + kirocommon "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/kiro/common" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/kiro_openai_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/kiro_openai_request.go index 968809420e..ed3d203114 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/kiro_openai_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/kiro_openai_request.go @@ -12,8 +12,8 @@ import ( "unicode/utf8" "github.com/google/uuid" - kiroclaude "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/kiro/claude" - kirocommon "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/kiro/common" + kiroclaude "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/kiro/claude" + kirocommon "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/kiro/common" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/kiro_openai_response.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/kiro_openai_response.go index 7d085de06d..efdc3c6999 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/kiro_openai_response.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/kiro_openai_response.go @@ -10,7 +10,7 @@ import ( "time" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/kiro_openai_stream.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/kiro_openai_stream.go index 484a94ee0f..258a03108d 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/kiro_openai_stream.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/kiro/openai/kiro_openai_stream.go @@ -8,7 +8,7 @@ import ( "time" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" ) // OpenAIStreamState tracks the state of streaming response conversion diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/claude/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/claude/init.go index 5312c8162d..5e077175f4 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/claude/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/claude/init.go @@ -1,9 +1,9 @@ package claude import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/claude/openai_claude_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/claude/openai_claude_request.go index 856cc458a3..3bdbe1c8fb 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/claude/openai_claude_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/claude/openai_claude_request.go @@ -8,7 +8,7 @@ package claude import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/claude/openai_claude_response.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/claude/openai_claude_response.go index e1f78fbc27..58ee9d6ead 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/claude/openai_claude_response.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/claude/openai_claude_response.go @@ -12,7 +12,7 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini-cli/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini-cli/init.go index 02462e54e1..fe700b278a 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini-cli/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini-cli/init.go @@ -1,9 +1,9 @@ package geminiCLI import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini-cli/openai_gemini_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini-cli/openai_gemini_request.go index 48e294f5f0..e43059f025 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini-cli/openai_gemini_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini-cli/openai_gemini_request.go @@ -6,7 +6,7 @@ package geminiCLI import ( - openaigemini "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/openai/gemini" + openaigemini "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/openai/gemini" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini-cli/openai_gemini_response.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini-cli/openai_gemini_response.go index 1e8d09a999..274be34698 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini-cli/openai_gemini_response.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini-cli/openai_gemini_response.go @@ -9,7 +9,7 @@ import ( "context" "fmt" - openaigemini "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/openai/gemini" + openaigemini "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/openai/gemini" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini/init.go index 80da2bc492..f94c28524e 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini/openai_gemini_request.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini/openai_gemini_request.go index 694aeaa4d9..36d4a1ff5e 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini/openai_gemini_request.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/gemini/openai_gemini_request.go @@ -11,7 +11,7 @@ import ( "math/big" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/openai/chat-completions/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/openai/chat-completions/init.go index 5b16565e72..e9260e644b 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/openai/chat-completions/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/openai/responses/init.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/openai/responses/init.go index 6d51ead3ac..774a6eae49 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/openai/responses/init.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/openai/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/translator/translator" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/translator/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func init() { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/translator/translator.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/translator/translator.go index 4f0ed1cdbc..593b6fc1a5 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/translator/translator.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/translator/translator.go @@ -7,8 +7,8 @@ package translator import ( "context" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" ) // registry holds the default translator registry instance. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/translator/translator_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/translator/translator_test.go index 422d224f04..4a84ebc59d 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/translator/translator_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/translator/translator/translator_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" ) func TestRequest(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/usage/logger_plugin.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/usage/logger_plugin.go index e4371e8d39..468e3ff2ca 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/usage/logger_plugin.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/usage/logger_plugin.go @@ -12,7 +12,7 @@ import ( "time" "github.com/gin-gonic/gin" - coreusage "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + coreusage "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" ) var statisticsEnabled atomic.Bool diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/usage/metrics_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/usage/metrics_test.go index 7b0ada1e9a..6022dcfe54 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/usage/metrics_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/usage/metrics_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - coreusage "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" + coreusage "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" ) func TestGetProviderMetrics_Empty(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/util/provider.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/util/provider.go index bc156e9327..75a1d591f8 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/util/provider.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/util/provider.go @@ -7,8 +7,8 @@ import ( "net/url" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/util/provider_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/util/provider_test.go index 5ba8f58939..0a0f0b05f4 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/util/provider_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/util/provider_test.go @@ -4,8 +4,8 @@ import ( "reflect" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" ) func TestResolveProviderPinnedModel(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/util/proxy.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/util/proxy.go index e990820da9..43f7157ed2 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/util/proxy.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/util/proxy.go @@ -9,7 +9,7 @@ import ( "net/http" "net/url" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" log "github.com/sirupsen/logrus" "golang.org/x/net/proxy" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/util/util.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/util/util.go index 52d17c8a87..a678562287 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/util/util.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/util/util.go @@ -11,7 +11,7 @@ import ( "regexp" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/util/util_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/util/util_test.go index 0beac317d2..789fd4b612 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/util/util_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/util/util_test.go @@ -6,7 +6,7 @@ import ( "path/filepath" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestSetLogLevel(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/clients.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/clients.go index 4e1d17c773..d5b4782540 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/clients.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/clients.go @@ -14,10 +14,10 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/diff" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/diff" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/config_reload.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/config_reload.go index 940b235594..e9d5aa4784 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/config_reload.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/config_reload.go @@ -10,9 +10,9 @@ import ( "reflect" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/diff" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/diff" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" "gopkg.in/yaml.v3" log "github.com/sirupsen/logrus" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/auth_diff.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/auth_diff.go index 4b6e600852..267edec793 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/auth_diff.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/auth_diff.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // BuildAuthChangeDetails computes a redacted, human-readable list of auth field changes. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/config_diff.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/config_diff.go index 5beeeebe1a..c6d4cfb145 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/config_diff.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/config_diff.go @@ -6,7 +6,7 @@ import ( "reflect" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) // BuildConfigChangeDetails computes a redacted, human-readable list of config changes. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/config_diff_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/config_diff_test.go index 302889f3bf..41cbe13610 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/config_diff_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/config_diff_test.go @@ -1,7 +1,7 @@ package diff import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" "testing" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/diff_generated.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/diff_generated.go index 3d65600f66..f564fd2e30 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/diff_generated.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/diff_generated.go @@ -1,9 +1,9 @@ -// Code generated by github.com/router-for-me/CLIProxyAPI/v6/cmd/codegen; DO NOT EDIT. +// Code generated by github.com/kooshapari/cliproxyapi-plusplus/v6/cmd/codegen; DO NOT EDIT. package diff import ( "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) // BuildConfigChangeDetailsGeneratedProviders computes changes for generated dedicated providers. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/model_hash.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/model_hash.go index 20293ca73b..c7ec5056b6 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/model_hash.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/model_hash.go @@ -7,7 +7,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) // ComputeOpenAICompatModelsHash returns a stable hash for OpenAI-compat models. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/model_hash_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/model_hash_test.go index b01b3582f7..4e4ada991e 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/model_hash_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/model_hash_test.go @@ -3,7 +3,7 @@ package diff import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestComputeOpenAICompatModelsHash_Deterministic(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/models_summary.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/models_summary.go index 326c23ac27..5ad8f0b5cf 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/models_summary.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/models_summary.go @@ -7,7 +7,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) const vertexModelsSummaryHashKey = "watcher-vertex-models-summary:v1" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/oauth_excluded.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/oauth_excluded.go index 0994e7a7ed..64c7e75452 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/oauth_excluded.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/oauth_excluded.go @@ -7,7 +7,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) type ExcludedModelsSummary struct { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/oauth_excluded_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/oauth_excluded_test.go index 1ddd7c769d..7626ed6a5e 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/oauth_excluded_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/oauth_excluded_test.go @@ -5,7 +5,7 @@ import ( "encoding/hex" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestSummarizeExcludedModels_NormalizesAndDedupes(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/oauth_model_alias.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/oauth_model_alias.go index 4e6ad3b794..3f2d0190ae 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/oauth_model_alias.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/oauth_model_alias.go @@ -7,7 +7,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) type OAuthModelAliasSummary struct { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/openai_compat.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/openai_compat.go index dfbeafee21..d2a35e1377 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/openai_compat.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/openai_compat.go @@ -8,7 +8,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) const openAICompatSignatureHashKey = "watcher-openai-compat-signature:v1" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/openai_compat_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/openai_compat_test.go index 4e2907c0f3..51853f0220 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/openai_compat_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/diff/openai_compat_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) func TestDiffOpenAICompatibility(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/dispatcher.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/dispatcher.go index 517316bff6..064cb24744 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/dispatcher.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/dispatcher.go @@ -9,9 +9,9 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/synthesizer" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/synthesizer" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func (w *Watcher) setAuthUpdateQueue(queue chan<- AuthUpdate) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/events.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/events.go index 1cb8db64f3..a2bb74ef4d 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/events.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/events.go @@ -13,7 +13,7 @@ import ( "time" "github.com/fsnotify/fsnotify" - kiroauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/kiro" + kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kiro" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/config.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/config.go index 65cadb1464..db9da8dcf7 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/config.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/config.go @@ -11,11 +11,11 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/diff" - kiroauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/kiro" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/cursorstorage" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/diff" + kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kiro" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/cursorstorage" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/config_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/config_test.go index 38ff58af8f..5d8ce6abd2 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/config_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/config_test.go @@ -1,7 +1,7 @@ package synthesizer import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" "os" "path/filepath" "testing" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/context.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/context.go index 8dadc9026a..79d1cf1d08 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/context.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/context.go @@ -3,7 +3,7 @@ package synthesizer import ( "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) // SynthesisContext provides the context needed for auth synthesis. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/file.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/file.go index 65aefc756d..30a5aa467b 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/file.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/file.go @@ -9,8 +9,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/runtime/geminicli" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/runtime/geminicli" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // FileSynthesizer generates Auth entries from OAuth JSON files. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/file_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/file_test.go index 88873a6138..e549822a9a 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/file_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/file_test.go @@ -8,8 +8,8 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestNewFileSynthesizer(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/helpers.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/helpers.go index dc31c7136f..d852b82d41 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/helpers.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/helpers.go @@ -8,9 +8,9 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/diff" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/diff" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) const stableIDGeneratorHashKey = "watcher-stable-id-generator:v1" diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/helpers_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/helpers_test.go index 5840f6716e..b96620d0e9 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/helpers_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/helpers_test.go @@ -7,9 +7,9 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/diff" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/diff" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func TestStableIDGenerator_Next_DoesNotUseLegacySHA256(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/interface.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/interface.go index 1a9aedc965..76fbd8756b 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/interface.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/interface.go @@ -5,7 +5,7 @@ package synthesizer import ( - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // AuthSynthesizer defines the interface for generating Auth entries from various sources. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/synthesizer_generated.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/synthesizer_generated.go index f5f8a8a8d4..03c29d8fd8 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/synthesizer_generated.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/synthesizer/synthesizer_generated.go @@ -1,8 +1,8 @@ -// Code generated by github.com/router-for-me/CLIProxyAPI/v6/cmd/codegen; DO NOT EDIT. +// Code generated by github.com/kooshapari/cliproxyapi-plusplus/v6/cmd/codegen; DO NOT EDIT. package synthesizer import ( - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" ) // getDedicatedProviderEntries returns the config entries for a dedicated provider. diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/watcher.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/watcher.go index 7eec47211c..1c352d4974 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/watcher.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/watcher.go @@ -9,11 +9,11 @@ import ( "time" "github.com/fsnotify/fsnotify" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" "gopkg.in/yaml.v3" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/watcher_test.go b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/watcher_test.go index 941e8e2c64..6c0ab106a5 100644 --- a/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/watcher_test.go +++ b/.worktrees/config/m/config-build/active/pkg/llmproxy/watcher/watcher_test.go @@ -14,11 +14,11 @@ import ( "time" "github.com/fsnotify/fsnotify" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/diff" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/synthesizer" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/diff" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/synthesizer" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/config" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" "gopkg.in/yaml.v3" ) diff --git a/.worktrees/config/m/config-build/active/sdk/api/handlers/claude/code_handlers.go b/.worktrees/config/m/config-build/active/sdk/api/handlers/claude/code_handlers.go index 074ffc0d07..4d2cb0a4d1 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/handlers/claude/code_handlers.go +++ b/.worktrees/config/m/config-build/active/sdk/api/handlers/claude/code_handlers.go @@ -16,10 +16,10 @@ import ( "net/http" "github.com/gin-gonic/gin" - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/sdk/api/handlers/gemini/gemini-cli_handlers.go b/.worktrees/config/m/config-build/active/sdk/api/handlers/gemini/gemini-cli_handlers.go index b5fd494375..1f32baac36 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/handlers/gemini/gemini-cli_handlers.go +++ b/.worktrees/config/m/config-build/active/sdk/api/handlers/gemini/gemini-cli_handlers.go @@ -14,10 +14,10 @@ import ( "time" "github.com/gin-gonic/gin" - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/sdk/api/handlers/gemini/gemini_handlers.go b/.worktrees/config/m/config-build/active/sdk/api/handlers/gemini/gemini_handlers.go index e51ad19bc5..fba7499181 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/handlers/gemini/gemini_handlers.go +++ b/.worktrees/config/m/config-build/active/sdk/api/handlers/gemini/gemini_handlers.go @@ -13,10 +13,10 @@ import ( "time" "github.com/gin-gonic/gin" - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" ) // GeminiAPIHandler contains the handlers for Gemini API endpoints. diff --git a/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers.go b/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers.go index 5d43fc58fa..cff8ccb4a6 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers.go +++ b/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers.go @@ -14,14 +14,14 @@ import ( "github.com/gin-gonic/gin" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/internal/util" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + coreexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "golang.org/x/net/context" ) diff --git a/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers_error_response_test.go b/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers_error_response_test.go index cde4547fff..376f9ce71e 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers_error_response_test.go +++ b/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers_error_response_test.go @@ -8,8 +8,8 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + sdkconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" ) func TestWriteErrorResponse_AddonHeadersDisabledByDefault(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers_metadata_test.go b/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers_metadata_test.go index 152433022a..66b5373eb7 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers_metadata_test.go +++ b/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers_metadata_test.go @@ -7,7 +7,7 @@ import ( "testing" "github.com/gin-gonic/gin" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" + coreexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" ) func requestContextWithHeader(t *testing.T, idempotencyKey string) context.Context { diff --git a/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers_request_details_test.go b/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers_request_details_test.go index b0f6b13262..452038fd11 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers_request_details_test.go +++ b/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers_request_details_test.go @@ -5,9 +5,9 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + sdkconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" ) func TestGetRequestDetails_PreservesSuffix(t *testing.T) { diff --git a/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers_stream_bootstrap_test.go b/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers_stream_bootstrap_test.go index ba9dcac598..8269b0f513 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers_stream_bootstrap_test.go +++ b/.worktrees/config/m/config-build/active/sdk/api/handlers/handlers_stream_bootstrap_test.go @@ -6,10 +6,10 @@ import ( "sync" "testing" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + coreexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdkconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" ) type failOnceStreamExecutor struct { diff --git a/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/endpoint_compat.go b/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/endpoint_compat.go index d7fc5f2f40..1363f93d7d 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/endpoint_compat.go +++ b/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/endpoint_compat.go @@ -1,6 +1,6 @@ package openai -import "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" +import "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" const ( openAIChatEndpoint = "/chat/completions" diff --git a/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_handlers.go b/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_handlers.go index 2e85dcf851..7264f84e3c 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_handlers.go +++ b/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_handlers.go @@ -14,12 +14,12 @@ import ( "sync" "github.com/gin-gonic/gin" - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - codexconverter "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/codex/openai/chat-completions" - responsesconverter "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/openai/openai/responses" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + codexconverter "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/codex/openai/chat-completions" + responsesconverter "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/openai/openai/responses" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_images_handlers.go b/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_images_handlers.go index cd9cb10e91..558cc88854 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_images_handlers.go +++ b/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_images_handlers.go @@ -10,10 +10,10 @@ import ( "time" "github.com/gin-gonic/gin" - constant "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/constant" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" + constant "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_responses_compact_test.go b/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_responses_compact_test.go index dcfcc99a7c..7ef1a3b69f 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_responses_compact_test.go +++ b/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_responses_compact_test.go @@ -9,11 +9,11 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + coreexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdkconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" ) type compactCaptureExecutor struct { diff --git a/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_responses_handlers.go b/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_responses_handlers.go index f10e8d51f7..7107b7c0f7 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_responses_handlers.go +++ b/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_responses_handlers.go @@ -13,11 +13,11 @@ import ( "net/http" "github.com/gin-gonic/gin" - . "github.com/router-for-me/CLIProxyAPI/v6/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - responsesconverter "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/openai/openai/responses" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" + . "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/constant" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + responsesconverter "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator/openai/openai/responses" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_responses_websocket.go b/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_responses_websocket.go index f2d44f059e..9fe38428fc 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_responses_websocket.go +++ b/.worktrees/config/m/config-build/active/sdk/api/handlers/openai/openai_responses_websocket.go @@ -13,9 +13,9 @@ import ( "github.com/gin-gonic/gin" "github.com/google/uuid" "github.com/gorilla/websocket" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/.worktrees/config/m/config-build/active/sdk/api/handlers/stream_forwarder.go b/.worktrees/config/m/config-build/active/sdk/api/handlers/stream_forwarder.go index 401baca8fa..476bc90e8e 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/handlers/stream_forwarder.go +++ b/.worktrees/config/m/config-build/active/sdk/api/handlers/stream_forwarder.go @@ -5,7 +5,7 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" ) type StreamForwardOptions struct { diff --git a/.worktrees/config/m/config-build/active/sdk/api/management.go b/.worktrees/config/m/config-build/active/sdk/api/management.go index 6fd3b709be..b1a52fe449 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/management.go +++ b/.worktrees/config/m/config-build/active/sdk/api/management.go @@ -6,9 +6,9 @@ package api import ( "github.com/gin-gonic/gin" - internalmanagement "github.com/router-for-me/CLIProxyAPI/v6/internal/api/handlers/management" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + internalmanagement "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/api/handlers/management" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" ) // ManagementTokenRequester exposes a limited subset of management endpoints for requesting tokens. diff --git a/.worktrees/config/m/config-build/active/sdk/api/options.go b/.worktrees/config/m/config-build/active/sdk/api/options.go index 8497884bf0..c69a1c875f 100644 --- a/.worktrees/config/m/config-build/active/sdk/api/options.go +++ b/.worktrees/config/m/config-build/active/sdk/api/options.go @@ -8,10 +8,10 @@ import ( "time" "github.com/gin-gonic/gin" - internalapi "github.com/router-for-me/CLIProxyAPI/v6/internal/api" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/api/handlers" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/logging" + internalapi "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/api" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/api/handlers" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/logging" ) // ServerOption customises HTTP server construction. diff --git a/.worktrees/config/m/config-build/active/sdk/auth/antigravity.go b/.worktrees/config/m/config-build/active/sdk/auth/antigravity.go index 6ed31d6d72..cde5c85cbe 100644 --- a/.worktrees/config/m/config-build/active/sdk/auth/antigravity.go +++ b/.worktrees/config/m/config-build/active/sdk/auth/antigravity.go @@ -8,12 +8,12 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/antigravity" - "github.com/router-for-me/CLIProxyAPI/v6/internal/browser" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "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" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/antigravity" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/browser" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/sdk/auth/claude.go b/.worktrees/config/m/config-build/active/sdk/auth/claude.go index 706763b3ea..cf5efd2ca9 100644 --- a/.worktrees/config/m/config-build/active/sdk/auth/claude.go +++ b/.worktrees/config/m/config-build/active/sdk/auth/claude.go @@ -7,13 +7,13 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/claude" - "github.com/router-for-me/CLIProxyAPI/v6/internal/browser" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/claude" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/browser" // legacy client removed - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "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" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/sdk/auth/codex.go b/.worktrees/config/m/config-build/active/sdk/auth/codex.go index c81842eb3c..8700064624 100644 --- a/.worktrees/config/m/config-build/active/sdk/auth/codex.go +++ b/.worktrees/config/m/config-build/active/sdk/auth/codex.go @@ -9,13 +9,13 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v6/internal/browser" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/codex" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/browser" // legacy client removed - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "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" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/sdk/auth/errors.go b/.worktrees/config/m/config-build/active/sdk/auth/errors.go index 78fe9a17bd..aa4fa32e41 100644 --- a/.worktrees/config/m/config-build/active/sdk/auth/errors.go +++ b/.worktrees/config/m/config-build/active/sdk/auth/errors.go @@ -3,7 +3,7 @@ package auth import ( "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/interfaces" ) // ProjectSelectionError indicates that the user must choose a specific project ID. diff --git a/.worktrees/config/m/config-build/active/sdk/auth/filestore.go b/.worktrees/config/m/config-build/active/sdk/auth/filestore.go index 4715d7f7b1..e77fd83d2e 100644 --- a/.worktrees/config/m/config-build/active/sdk/auth/filestore.go +++ b/.worktrees/config/m/config-build/active/sdk/auth/filestore.go @@ -14,7 +14,7 @@ import ( "sync" "time" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // FileTokenStore persists token records and auth metadata using the filesystem as backing storage. diff --git a/.worktrees/config/m/config-build/active/sdk/auth/gemini.go b/.worktrees/config/m/config-build/active/sdk/auth/gemini.go index 2b8f9c2b88..304bc3501f 100644 --- a/.worktrees/config/m/config-build/active/sdk/auth/gemini.go +++ b/.worktrees/config/m/config-build/active/sdk/auth/gemini.go @@ -5,10 +5,10 @@ import ( "fmt" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/gemini" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/gemini" // legacy client removed - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // GeminiAuthenticator implements the login flow for Google Gemini CLI accounts. diff --git a/.worktrees/config/m/config-build/active/sdk/auth/github_copilot.go b/.worktrees/config/m/config-build/active/sdk/auth/github_copilot.go index 1d14ac4751..d3dc37106f 100644 --- a/.worktrees/config/m/config-build/active/sdk/auth/github_copilot.go +++ b/.worktrees/config/m/config-build/active/sdk/auth/github_copilot.go @@ -5,10 +5,10 @@ import ( "fmt" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/copilot" - "github.com/router-for-me/CLIProxyAPI/v6/internal/browser" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/copilot" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/browser" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/sdk/auth/iflow.go b/.worktrees/config/m/config-build/active/sdk/auth/iflow.go index a695311db2..97e55f7a62 100644 --- a/.worktrees/config/m/config-build/active/sdk/auth/iflow.go +++ b/.worktrees/config/m/config-build/active/sdk/auth/iflow.go @@ -6,12 +6,12 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/iflow" - "github.com/router-for-me/CLIProxyAPI/v6/internal/browser" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "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" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/iflow" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/browser" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/sdk/auth/interfaces.go b/.worktrees/config/m/config-build/active/sdk/auth/interfaces.go index 64cf8ed035..c98e608c5d 100644 --- a/.worktrees/config/m/config-build/active/sdk/auth/interfaces.go +++ b/.worktrees/config/m/config-build/active/sdk/auth/interfaces.go @@ -5,8 +5,8 @@ import ( "errors" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) var ErrRefreshNotSupported = errors.New("cliproxy auth: refresh not supported") diff --git a/.worktrees/config/m/config-build/active/sdk/auth/kilo.go b/.worktrees/config/m/config-build/active/sdk/auth/kilo.go index 7e98f7c4b7..2089e1c758 100644 --- a/.worktrees/config/m/config-build/active/sdk/auth/kilo.go +++ b/.worktrees/config/m/config-build/active/sdk/auth/kilo.go @@ -5,9 +5,9 @@ import ( "fmt" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/kilo" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/kilo" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // KiloAuthenticator implements the login flow for Kilo AI accounts. diff --git a/.worktrees/config/m/config-build/active/sdk/auth/kimi.go b/.worktrees/config/m/config-build/active/sdk/auth/kimi.go index 12ae101e7d..34dfef27be 100644 --- a/.worktrees/config/m/config-build/active/sdk/auth/kimi.go +++ b/.worktrees/config/m/config-build/active/sdk/auth/kimi.go @@ -6,10 +6,10 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/kimi" - "github.com/router-for-me/CLIProxyAPI/v6/internal/browser" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/kimi" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/browser" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/sdk/auth/kiro.go b/.worktrees/config/m/config-build/active/sdk/auth/kiro.go index ad165b75a3..3f1b72b080 100644 --- a/.worktrees/config/m/config-build/active/sdk/auth/kiro.go +++ b/.worktrees/config/m/config-build/active/sdk/auth/kiro.go @@ -9,9 +9,9 @@ import ( "strings" "time" - kiroauth "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/kiro" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/kiro" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // extractKiroIdentifier extracts a meaningful identifier for file naming. diff --git a/.worktrees/config/m/config-build/active/sdk/auth/manager.go b/.worktrees/config/m/config-build/active/sdk/auth/manager.go index d630f128e3..b0965ab3eb 100644 --- a/.worktrees/config/m/config-build/active/sdk/auth/manager.go +++ b/.worktrees/config/m/config-build/active/sdk/auth/manager.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) // Manager aggregates authenticators and coordinates persistence via a token store. diff --git a/.worktrees/config/m/config-build/active/sdk/auth/qwen.go b/.worktrees/config/m/config-build/active/sdk/auth/qwen.go index 310d498760..e4139a7ac9 100644 --- a/.worktrees/config/m/config-build/active/sdk/auth/qwen.go +++ b/.worktrees/config/m/config-build/active/sdk/auth/qwen.go @@ -6,11 +6,11 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/qwen" - "github.com/router-for-me/CLIProxyAPI/v6/internal/browser" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/qwen" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/browser" // legacy client removed - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/.worktrees/config/m/config-build/active/sdk/auth/refresh_registry.go b/.worktrees/config/m/config-build/active/sdk/auth/refresh_registry.go index ecf8e820af..f9e00a6727 100644 --- a/.worktrees/config/m/config-build/active/sdk/auth/refresh_registry.go +++ b/.worktrees/config/m/config-build/active/sdk/auth/refresh_registry.go @@ -3,7 +3,7 @@ package auth import ( "time" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) func init() { diff --git a/.worktrees/config/m/config-build/active/sdk/auth/store_registry.go b/.worktrees/config/m/config-build/active/sdk/auth/store_registry.go index 760449f8cf..5b3160d4a9 100644 --- a/.worktrees/config/m/config-build/active/sdk/auth/store_registry.go +++ b/.worktrees/config/m/config-build/active/sdk/auth/store_registry.go @@ -3,7 +3,7 @@ package auth import ( "sync" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) var ( diff --git a/.worktrees/config/m/config-build/active/sdk/config/config.go b/.worktrees/config/m/config-build/active/sdk/config/config.go index 14163418f7..bc299cde25 100644 --- a/.worktrees/config/m/config-build/active/sdk/config/config.go +++ b/.worktrees/config/m/config-build/active/sdk/config/config.go @@ -4,7 +4,7 @@ // embed CLIProxyAPI without importing internal packages. package config -import internalconfig "github.com/router-for-me/CLIProxyAPI/v6/internal/config" +import internalconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" type SDKConfig = internalconfig.SDKConfig diff --git a/.worktrees/config/m/config-build/active/sdk/logging/request_logger.go b/.worktrees/config/m/config-build/active/sdk/logging/request_logger.go index ddbda6b8b0..287bbd028f 100644 --- a/.worktrees/config/m/config-build/active/sdk/logging/request_logger.go +++ b/.worktrees/config/m/config-build/active/sdk/logging/request_logger.go @@ -1,7 +1,7 @@ // Package logging re-exports request logging primitives for SDK consumers. package logging -import internallogging "github.com/router-for-me/CLIProxyAPI/v6/internal/logging" +import internallogging "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/logging" const defaultErrorLogsMaxFiles = 10 diff --git a/.worktrees/config/m/config-build/active/sdk/translator/builtin/builtin.go b/.worktrees/config/m/config-build/active/sdk/translator/builtin/builtin.go index 798e43f1a9..8cccca115a 100644 --- a/.worktrees/config/m/config-build/active/sdk/translator/builtin/builtin.go +++ b/.worktrees/config/m/config-build/active/sdk/translator/builtin/builtin.go @@ -2,9 +2,9 @@ package builtin import ( - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator" ) // Registry exposes the default registry populated with all built-in translators. diff --git a/.worktrees/config/m/config-build/active/test/amp_management_test.go b/.worktrees/config/m/config-build/active/test/amp_management_test.go index e384ef0e8b..82d70b8cb3 100644 --- a/.worktrees/config/m/config-build/active/test/amp_management_test.go +++ b/.worktrees/config/m/config-build/active/test/amp_management_test.go @@ -10,8 +10,8 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v6/internal/api/handlers/management" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/api/handlers/management" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) func init() { diff --git a/.worktrees/config/m/config-build/active/test/builtin_tools_translation_test.go b/.worktrees/config/m/config-build/active/test/builtin_tools_translation_test.go index 07d7671544..d7ac09f6d0 100644 --- a/.worktrees/config/m/config-build/active/test/builtin_tools_translation_test.go +++ b/.worktrees/config/m/config-build/active/test/builtin_tools_translation_test.go @@ -3,9 +3,9 @@ package test import ( "testing" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/.worktrees/config/m/config-build/active/test/thinking_conversion_test.go b/.worktrees/config/m/config-build/active/test/thinking_conversion_test.go index e7beb1a351..3063a2fd33 100644 --- a/.worktrees/config/m/config-build/active/test/thinking_conversion_test.go +++ b/.worktrees/config/m/config-build/active/test/thinking_conversion_test.go @@ -6,21 +6,21 @@ import ( "testing" "time" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/translator" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/translator" // Import provider packages to trigger init() registration of ProviderAppliers - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking/provider/antigravity" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking/provider/claude" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking/provider/codex" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking/provider/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking/provider/geminicli" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking/provider/iflow" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking/provider/kimi" - _ "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking/provider/openai" - - "github.com/router-for-me/CLIProxyAPI/v6/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v6/internal/thinking" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking/provider/antigravity" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking/provider/claude" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking/provider/codex" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking/provider/gemini" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking/provider/geminicli" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking/provider/iflow" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking/provider/kimi" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking/provider/openai" + + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/thinking" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/ADR.md b/ADR.md index 7bddabe4ea..f07995aa7e 100644 --- a/ADR.md +++ b/ADR.md @@ -1,16 +1,89 @@ -# Architecture Decision Records +# Architecture Decision Records — CLIProxyAPI++ -## ADR-001: CLI Proxy API++ +## ADR-001 | Go HTTP Proxy Server | Adopted -**Status**: Accepted +**Status:** Adopted -**Context**: Unified CLI proxy with rich features. +**Context:** Need a high-performance LLM API proxy that can handle concurrent streaming connections with minimal latency overhead. -**Decision**: -- Go-based proxy -- Provider abstraction -- Rich observability +**Decision:** Use Go with net/http for the core proxy server on port 8317, implementing OpenAI-compatible endpoints that translate to multiple backend providers. -**Consequences**: -- Positive: High performance -- Positive: Multi-provider support +**Consequences:** +- Excellent concurrency via goroutines for streaming connections +- Single binary deployment simplifies Docker and bare-metal installs +- Strong stdlib HTTP support reduces external dependencies + +--- + +## ADR-002 | Provider Abstraction Layer | Adopted + +**Status:** Adopted + +**Context:** The proxy must support multiple LLM providers (GitHub Copilot, Kiro/AWS) with different auth flows and API formats while exposing a unified OpenAI-compatible interface. + +**Decision:** Implement a provider abstraction with pluggable auth adapters in `auths/`, model name conversion, and per-provider request/response translation. + +**Consequences:** +- Adding new providers requires only a new auth adapter and model mapping +- Model name converter handles provider-specific naming transparently +- Each provider manages its own token lifecycle independently + +--- + +## ADR-003 | OAuth Web UI for Kiro/AWS | Adopted + +**Status:** Adopted + +**Context:** Kiro authentication requires AWS Builder ID or Identity Center flows that involve browser-based OAuth redirects, unlike Copilot's device code flow. + +**Decision:** Embed a web UI at `/v0/oauth/kiro` that handles the full OAuth PKCE flow, token import from IDE, and background refresh. + +**Consequences:** +- Users can authenticate via browser without CLI interaction +- Token import supports copying tokens from Kiro IDE directly +- Background goroutine handles token refresh before expiry + +--- + +## ADR-004 | Docker-First Deployment | Adopted + +**Status:** Adopted + +**Context:** Users need a simple, reproducible deployment that works across platforms with minimal configuration. + +**Decision:** Provide `Dockerfile` and `docker-compose.yml` with YAML config via volume mount (`config.yaml`). + +**Consequences:** +- Single `docker-compose up` for deployment +- Config changes require only volume-mounted YAML edits +- Multi-provider configuration in a single config file + +--- + +## ADR-005 | Rate Limiting with Smart Cooldown | Adopted + +**Status:** Adopted + +**Context:** Provider APIs enforce rate limits; aggressive retries waste quota and risk bans. + +**Decision:** Implement a rate limiter with smart cooldown manager that tracks per-provider limits and backs off exponentially. + +**Consequences:** +- Prevents provider API ban from excessive requests +- Cooldown periods auto-adjust based on response headers +- Metrics module tracks usage for observability + +--- + +## ADR-006 | Plus Fork Strategy | Adopted + +**Status:** Adopted + +**Context:** CLIProxyAPI++ is an enhanced fork adding multi-provider support, Kiro auth, and observability to the original CLIProxyAPI. + +**Decision:** Maintain as independent "plus-plus" fork with additive features, preserving compatibility with upstream API contract. + +**Consequences:** +- Upstream changes can be cherry-picked when compatible +- New features (Kiro, metrics, fingerprint) are additive, not breaking +- Original Copilot-only flow remains functional diff --git a/CHANGELOG.md b/CHANGELOG.md index 6260d449f7..61002fc881 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,12 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added +- Defined `.worktrees/` discipline and legacy wtrees boundary in CLAUDE.md/AGENTS.md. +- Project specification documents (PRD, ADR, FR, PLAN, trackers) for traceability and governance. +- VERSION file. ### Changed -<<<<<<< HEAD -======= - Support multiple aliases for a single upstream model in OAuth model alias configuration, preserving compatibility while allowing same upstream model name with distinct aliases. ->>>>>>> archive/pr-234-head-20260223 ### Deprecated diff --git a/FUNCTIONAL_REQUIREMENTS.md b/FUNCTIONAL_REQUIREMENTS.md new file mode 100644 index 0000000000..c2e1fdc967 --- /dev/null +++ b/FUNCTIONAL_REQUIREMENTS.md @@ -0,0 +1,39 @@ +# Functional Requirements — CLIProxyAPI++ + +## FR-PRX: Proxy Core + +- **FR-PRX-001:** The system SHALL expose an OpenAI-compatible API on port 8317. +- **FR-PRX-002:** The system SHALL support model name conversion across providers. +- **FR-PRX-003:** The system SHALL handle UTF-8 streaming responses correctly. + +## FR-AUTH: Authentication + +- **FR-AUTH-001:** The system SHALL support GitHub Copilot OAuth login. +- **FR-AUTH-002:** The system SHALL support Kiro OAuth via web UI at `/v0/oauth/kiro`. +- **FR-AUTH-003:** Kiro auth SHALL support AWS Builder ID and Identity Center login. +- **FR-AUTH-004:** The system SHALL support token import from Kiro IDE. +- **FR-AUTH-005:** Background token refresh SHALL occur before token expiration. + +## FR-RL: Rate Limiting + +- **FR-RL-001:** The system SHALL enforce configurable request rate limits. +- **FR-RL-002:** The system SHALL implement smart cooldown on provider rate limits. + +## FR-MON: Monitoring + +- **FR-MON-001:** The system SHALL collect request metrics (count, latency, errors). +- **FR-MON-002:** The system SHALL provide real-time usage monitoring and quota tracking. + +## FR-SEC: Security + +- **FR-SEC-001:** The system SHALL generate device fingerprints for request attribution. + +## FR-DEP: Deployment + +- **FR-DEP-001:** The system SHALL support Docker deployment via docker-compose. +- **FR-DEP-002:** Configuration SHALL be via YAML file with volume mount support. + +## FR-CFG: Configuration + +- **FR-CFG-001:** The system SHALL read configuration from `config.yaml`. +- **FR-CFG-002:** The system SHALL support multiple provider configurations simultaneously. diff --git a/PLAN.md b/PLAN.md new file mode 100644 index 0000000000..39ff49f1b1 --- /dev/null +++ b/PLAN.md @@ -0,0 +1,39 @@ +# Implementation Plan — CLIProxyAPI++ + +## Phase 1: Core Proxy (Done) + +| Task | Description | Depends On | Status | +|------|-------------|------------|--------| +| P1.1 | Go HTTP server on :8317 | — | Done | +| P1.2 | OpenAI-compatible API endpoints | P1.1 | Done | +| P1.3 | Provider abstraction layer | P1.1 | Done | +| P1.4 | Model name converter | P1.3 | Done | +| P1.5 | YAML configuration loading | — | Done | + +## Phase 2: Provider Auth (Done) + +| Task | Description | Depends On | Status | +|------|-------------|------------|--------| +| P2.1 | GitHub Copilot OAuth | P1.3 | Done | +| P2.2 | Kiro OAuth web UI | P1.3 | Done | +| P2.3 | AWS Builder ID / Identity Center flows | P2.2 | Done | +| P2.4 | Token import from Kiro IDE | P2.2 | Done | +| P2.5 | Background token refresh | P2.1 | Done | + +## Phase 3: Enhanced Features (Done) + +| Task | Description | Depends On | Status | +|------|-------------|------------|--------| +| P3.1 | Rate limiter | P1.1 | Done | +| P3.2 | Cooldown management | P3.1 | Done | +| P3.3 | Metrics collection | P1.1 | Done | +| P3.4 | Usage checker | P3.3 | Done | +| P3.5 | Device fingerprint | P1.1 | Done | +| P3.6 | UTF-8 stream processing | P1.2 | Done | + +## Phase 4: Deployment (Done) + +| Task | Description | Depends On | Status | +|------|-------------|------------|--------| +| P4.1 | Docker image build | P1.1 | Done | +| P4.2 | docker-compose configuration | P4.1 | Done | diff --git a/PRD.md b/PRD.md new file mode 100644 index 0000000000..96808279f0 --- /dev/null +++ b/PRD.md @@ -0,0 +1,54 @@ +# Product Requirements Document — CLIProxyAPI++ + +## E1: Multi-Provider LLM Proxy + +### E1.1: Provider Abstraction +**As** a developer, **I want** a unified API proxy supporting Claude, Copilot, Kiro, and other providers **so that** I can access any model through a single endpoint. + +**Acceptance Criteria:** +- OpenAI-compatible API endpoint at `:8317` +- Provider-specific authentication (OAuth, API key) +- Model name conversion across providers + +### E1.2: GitHub Copilot Support +**As** a developer, **I want** GitHub Copilot OAuth login **so that** I can proxy requests through my Copilot subscription. + +### E1.3: Kiro (AWS CodeWhisperer) Support +**As** a developer, **I want** Kiro OAuth login via web UI **so that** I can proxy requests through AWS Builder ID or Identity Center. + +**Acceptance Criteria:** +- Web-based OAuth at `/v0/oauth/kiro` +- AWS Builder ID and Identity Center login flows +- Token import from Kiro IDE + +## E2: Enhanced Features + +### E2.1: Rate Limiter +**As** an operator, **I want** built-in rate limiting **so that** API abuse is prevented. + +### E2.2: Background Token Refresh +**As** a developer, **I want** automatic token refresh before expiration **so that** requests are never interrupted by expired tokens. + +### E2.3: Metrics and Monitoring +**As** an operator, **I want** request metrics collection **so that** I can monitor usage and debug issues. + +### E2.4: Device Fingerprint +**As** a security engineer, **I want** device fingerprint generation **so that** requests are tied to specific devices. + +### E2.5: Cooldown Management +**As** an operator, **I want** smart cooldown for API rate limits **so that** the proxy backs off gracefully. + +### E2.6: Usage Checker +**As** a developer, **I want** real-time usage monitoring **so that** I can track quota consumption. + +### E2.7: UTF-8 Stream Processing +**As** a developer, **I want** improved streaming response handling **so that** multi-byte characters are processed correctly. + +## E3: Deployment + +### E3.1: Docker Deployment +**As** an operator, **I want** one-command Docker deployment **so that** the proxy is running in seconds. + +**Acceptance Criteria:** +- `docker-compose.yml` with volume-mounted config +- Pre-built image at `eceasy/cli-proxy-api-plus:latest` diff --git a/VERSION b/VERSION new file mode 100644 index 0000000000..09b254e90c --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +6.0.0 diff --git a/internal/api/handlers/management/auth_files.go b/internal/api/handlers/management/auth_files.go index 34cb1b53c9..ff0d74902d 100644 --- a/internal/api/handlers/management/auth_files.go +++ b/internal/api/handlers/management/auth_files.go @@ -1956,10 +1956,12 @@ func (h *Handler) RequestGitHubToken(c *gin.Context) { return } - username, errUser := deviceClient.FetchUserInfo(ctx, tokenData.AccessToken) + userInfo, errUser := deviceClient.FetchUserInfo(ctx, tokenData.AccessToken) + username := "github-user" if errUser != nil { log.Warnf("Failed to fetch user info: %v", errUser) - username = "github-user" + } else { + username = userInfo.Login } tokenStorage := &copilot.CopilotTokenStorage{ diff --git a/internal/auth/copilot/copilot_auth.go b/internal/auth/copilot/copilot_auth.go index 15b41c075b..59f0e346c4 100644 --- a/internal/auth/copilot/copilot_auth.go +++ b/internal/auth/copilot/copilot_auth.go @@ -82,10 +82,12 @@ func (c *CopilotAuth) WaitForAuthorization(ctx context.Context, deviceCode *Devi } // Fetch the GitHub username - username, err := c.deviceClient.FetchUserInfo(ctx, tokenData.AccessToken) + userInfo, err := c.deviceClient.FetchUserInfo(ctx, tokenData.AccessToken) + username := "unknown" if err != nil { log.Warnf("copilot: failed to fetch user info: %v", err) - username = "unknown" + } else { + username = userInfo.Login } return &CopilotAuthBundle{ @@ -150,12 +152,12 @@ func (c *CopilotAuth) ValidateToken(ctx context.Context, accessToken string) (bo return false, "", nil } - username, err := c.deviceClient.FetchUserInfo(ctx, accessToken) + userInfo, err := c.deviceClient.FetchUserInfo(ctx, accessToken) if err != nil { return false, "", err } - return true, username, nil + return true, userInfo.Login, nil } // CreateTokenStorage creates a new CopilotTokenStorage from auth bundle. diff --git a/internal/auth/copilot/oauth.go b/internal/auth/copilot/oauth.go index 8f97c9cd91..ffa10babcb 100644 --- a/internal/auth/copilot/oauth.go +++ b/internal/auth/copilot/oauth.go @@ -23,8 +23,8 @@ const ( copilotDeviceCodeURL = "https://github.com/login/device/code" // copilotTokenURL is the endpoint for exchanging device codes for tokens. copilotTokenURL = "https://github.com/login/oauth/access_token" - // copilotUserInfoURL is the endpoint for fetching GitHub user information. - copilotUserInfoURL = "https://api.github.com/user" + // copilotGitHubUserInfoURL is the endpoint for fetching GitHub user information. + copilotGitHubUserInfoURL = "https://api.github.com/user" // defaultPollInterval is the default interval for polling token endpoint. defaultPollInterval = 5 * time.Second // maxPollDuration is the maximum time to wait for user authorization. @@ -211,15 +211,22 @@ func (c *DeviceFlowClient) exchangeDeviceCode(ctx context.Context, deviceCode st }, nil } -// FetchUserInfo retrieves the GitHub username for the authenticated user. -func (c *DeviceFlowClient) FetchUserInfo(ctx context.Context, accessToken string) (string, error) { +// GitHubUserInfo holds the GitHub user profile returned by FetchUserInfo. +type GitHubUserInfo struct { + Login string `json:"login"` + Email string `json:"email"` + Name string `json:"name"` +} + +// FetchUserInfo retrieves the GitHub user profile for the authenticated user. +func (c *DeviceFlowClient) FetchUserInfo(ctx context.Context, accessToken string) (*GitHubUserInfo, error) { if accessToken == "" { - return "", NewAuthenticationError(ErrUserInfoFailed, fmt.Errorf("access token is empty")) + return nil, NewAuthenticationError(ErrUserInfoFailed, fmt.Errorf("access token is empty")) } - req, err := http.NewRequestWithContext(ctx, http.MethodGet, copilotUserInfoURL, nil) + req, err := http.NewRequestWithContext(ctx, http.MethodGet, copilotGitHubUserInfoURL, nil) if err != nil { - return "", NewAuthenticationError(ErrUserInfoFailed, err) + return nil, NewAuthenticationError(ErrUserInfoFailed, err) } req.Header.Set("Authorization", "Bearer "+accessToken) req.Header.Set("Accept", "application/json") @@ -227,7 +234,7 @@ func (c *DeviceFlowClient) FetchUserInfo(ctx context.Context, accessToken string resp, err := c.httpClient.Do(req) if err != nil { - return "", NewAuthenticationError(ErrUserInfoFailed, err) + return nil, NewAuthenticationError(ErrUserInfoFailed, err) } defer func() { if errClose := resp.Body.Close(); errClose != nil { @@ -237,19 +244,17 @@ func (c *DeviceFlowClient) FetchUserInfo(ctx context.Context, accessToken string if !isHTTPSuccess(resp.StatusCode) { bodyBytes, _ := io.ReadAll(resp.Body) - return "", NewAuthenticationError(ErrUserInfoFailed, fmt.Errorf("status %d: %s", resp.StatusCode, string(bodyBytes))) + return nil, NewAuthenticationError(ErrUserInfoFailed, fmt.Errorf("status %d: %s", resp.StatusCode, string(bodyBytes))) } - var userInfo struct { - Login string `json:"login"` - } + var userInfo GitHubUserInfo if err = json.NewDecoder(resp.Body).Decode(&userInfo); err != nil { - return "", NewAuthenticationError(ErrUserInfoFailed, err) + return nil, NewAuthenticationError(ErrUserInfoFailed, err) } if userInfo.Login == "" { - return "", NewAuthenticationError(ErrUserInfoFailed, fmt.Errorf("empty username")) + return nil, NewAuthenticationError(ErrUserInfoFailed, fmt.Errorf("empty username")) } - return userInfo.Login, nil + return &userInfo, nil } diff --git a/internal/auth/copilot/token.go b/internal/auth/copilot/token.go index ffd9a8de5b..5f99e79763 100644 --- a/internal/auth/copilot/token.go +++ b/internal/auth/copilot/token.go @@ -26,6 +26,10 @@ type CopilotTokenStorage struct { ExpiresAt string `json:"expires_at,omitempty"` // Username is the GitHub username associated with this token. Username string `json:"username"` + // Email is the GitHub email address associated with this account. + Email string `json:"email,omitempty"` + // Name is the display name of the GitHub account owner. + Name string `json:"name,omitempty"` // Type indicates the authentication provider type, always "github-copilot" for this storage. Type string `json:"type"` } @@ -46,6 +50,10 @@ type CopilotAuthBundle struct { TokenData *CopilotTokenData // Username is the GitHub username. Username string + // Email is the GitHub email address for the authenticated user. + Email string + // Name is the display name of the authenticated user. + Name string } // DeviceCodeResponse represents GitHub's device code response. diff --git a/internal/config/config.go b/internal/config/config.go index aa5a124b6c..1eb90f7517 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -89,6 +89,10 @@ type Config struct { // Nil means enabled (default behavior). ResponsesWebsocketEnabled *bool `yaml:"responses-websocket-enabled,omitempty" json:"responses-websocket-enabled,omitempty"` + // ResponsesCompactEnabled gates the /responses/compact endpoint. + // Nil means enabled (default behavior). + ResponsesCompactEnabled *bool `yaml:"responses-compact-enabled,omitempty" json:"responses-compact-enabled,omitempty"` + // GeminiKey defines Gemini API key configurations with optional routing overrides. GeminiKey []GeminiKey `yaml:"gemini-api-key" json:"gemini-api-key"` @@ -1118,6 +1122,15 @@ func (cfg *Config) IsResponsesWebsocketEnabled() bool { return *cfg.ResponsesWebsocketEnabled } +// IsResponsesCompactEnabled returns true when the /responses/compact endpoint +// should be available. Default is enabled when unset. +func (cfg *Config) IsResponsesCompactEnabled() bool { + if cfg == nil || cfg.ResponsesCompactEnabled == nil { + return true + } + return *cfg.ResponsesCompactEnabled +} + // SanitizeOpenAICompatibility removes OpenAI-compatibility provider entries that are // not actionable, specifically those missing a BaseURL. It trims whitespace before // evaluation and preserves the relative order of remaining entries. diff --git a/internal/translator/kiro/claude/kiro_websearch_handler.go b/internal/translator/kiro/claude/kiro_websearch_handler.go index 8b2ef6425f..1f8f6d4637 100644 --- a/internal/translator/kiro/claude/kiro_websearch_handler.go +++ b/internal/translator/kiro/claude/kiro_websearch_handler.go @@ -18,89 +18,15 @@ import ( log "github.com/sirupsen/logrus" ) -// McpRequest represents a JSON-RPC 2.0 request to Kiro MCP API -type McpRequest struct { - ID string `json:"id"` - JSONRPC string `json:"jsonrpc"` - Method string `json:"method"` - Params McpParams `json:"params"` -} - -// McpParams represents MCP request parameters -type McpParams struct { - Name string `json:"name"` - Arguments McpArguments `json:"arguments"` -} - -// McpArgumentsMeta represents the _meta field in MCP arguments -type McpArgumentsMeta struct { - IsValid bool `json:"_isValid"` - ActivePath []string `json:"_activePath"` - CompletedPaths [][]string `json:"_completedPaths"` -} - -// McpArguments represents MCP request arguments -type McpArguments struct { - Query string `json:"query"` - Meta *McpArgumentsMeta `json:"_meta,omitempty"` -} - -// McpResponse represents a JSON-RPC 2.0 response from Kiro MCP API -type McpResponse struct { - Error *McpError `json:"error,omitempty"` - ID string `json:"id"` - JSONRPC string `json:"jsonrpc"` - Result *McpResult `json:"result,omitempty"` -} - -// McpError represents an MCP error -type McpError struct { - Code *int `json:"code,omitempty"` - Message *string `json:"message,omitempty"` -} - -// McpResult represents MCP result -type McpResult struct { - Content []McpContent `json:"content"` - IsError bool `json:"isError"` -} - -// McpContent represents MCP content item -type McpContent struct { - ContentType string `json:"type"` - Text string `json:"text"` -} - -// WebSearchResults represents parsed search results -type WebSearchResults struct { - Results []WebSearchResult `json:"results"` - TotalResults *int `json:"totalResults,omitempty"` - Query *string `json:"query,omitempty"` - Error *string `json:"error,omitempty"` -} - -// WebSearchResult represents a single search result -type WebSearchResult struct { - Title string `json:"title"` - URL string `json:"url"` - Snippet *string `json:"snippet,omitempty"` - PublishedDate *int64 `json:"publishedDate,omitempty"` - ID *string `json:"id,omitempty"` - Domain *string `json:"domain,omitempty"` - MaxVerbatimWordLimit *int `json:"maxVerbatimWordLimit,omitempty"` - PublicDomain *bool `json:"publicDomain,omitempty"` -} - // Cached web_search tool description fetched from MCP tools/list. // Uses atomic.Pointer[sync.Once] for lock-free reads with retry-on-failure: // - sync.Once prevents race conditions and deduplicates concurrent calls // - On failure, a fresh sync.Once is swapped in to allow retry on next call // - On success, sync.Once stays "done" forever — zero overhead for subsequent calls var ( - cachedToolDescription atomic.Value // stores string - toolDescOnce atomic.Pointer[sync.Once] - fallbackFpOnce sync.Once - fallbackFp *kiroauth.Fingerprint + toolDescOnce atomic.Pointer[sync.Once] + fallbackFpOnce sync.Once + fallbackFp *kiroauth.Fingerprint ) func init() { @@ -171,15 +97,6 @@ func FetchToolDescription(mcpEndpoint, authToken string, httpClient *http.Client }) } -// GetWebSearchDescription returns the cached web_search tool description, -// or empty string if not yet fetched. Lock-free via atomic.Value. -func GetWebSearchDescription() string { - if v := cachedToolDescription.Load(); v != nil { - return v.(string) - } - return "" -} - // WebSearchHandler handles web search requests via Kiro MCP API type WebSearchHandler struct { McpEndpoint string @@ -322,22 +239,3 @@ func (h *WebSearchHandler) CallMcpAPI(request *McpRequest) (*McpResponse, error) return nil, lastErr } -// ParseSearchResults extracts WebSearchResults from MCP response -func ParseSearchResults(response *McpResponse) *WebSearchResults { - if response == nil || response.Result == nil || len(response.Result.Content) == 0 { - return nil - } - - content := response.Result.Content[0] - if content.ContentType != "text" { - return nil - } - - var results WebSearchResults - if err := json.Unmarshal([]byte(content.Text), &results); err != nil { - log.Warnf("kiro/websearch: failed to parse search results: %v", err) - return nil - } - - return &results -} diff --git a/pkg/llmproxy/api/aliases.go b/pkg/llmproxy/api/aliases.go index a22864182b..89712fddcf 100644 --- a/pkg/llmproxy/api/aliases.go +++ b/pkg/llmproxy/api/aliases.go @@ -16,4 +16,5 @@ var ( WithKeepAliveEndpoint = api.WithKeepAliveEndpoint WithRequestLoggerFactory = api.WithRequestLoggerFactory NewServer = api.NewServer + WithPostAuthHook = api.WithPostAuthHook ) diff --git a/pkg/llmproxy/api/handlers/management/api_tools_test.go b/pkg/llmproxy/api/handlers/management/api_tools_test.go index ec966d3a26..9fc2f27474 100644 --- a/pkg/llmproxy/api/handlers/management/api_tools_test.go +++ b/pkg/llmproxy/api/handlers/management/api_tools_test.go @@ -15,7 +15,6 @@ import ( "github.com/gin-gonic/gin" kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kiro" - "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" ) diff --git a/pkg/llmproxy/config/sdk_config.go b/pkg/llmproxy/config/sdk_config.go index b32b55b066..7c0d88ef74 100644 --- a/pkg/llmproxy/config/sdk_config.go +++ b/pkg/llmproxy/config/sdk_config.go @@ -11,3 +11,12 @@ type SDKConfig = internalconfig.SDKConfig // StreamingConfig is an alias to internal/config.StreamingConfig. type StreamingConfig = internalconfig.StreamingConfig + +// Config is an alias to internal/config.Config. +type Config = internalconfig.Config + +// LoadConfig is an alias to internal/config.LoadConfig. +var LoadConfig = internalconfig.LoadConfig + +// SaveConfigPreserveComments is an alias to internal/config.SaveConfigPreserveComments. +var SaveConfigPreserveComments = internalconfig.SaveConfigPreserveComments diff --git a/sdk/auth/codex.go b/sdk/auth/codex.go index 030ca77cf9..b9e936e7e9 100644 --- a/sdk/auth/codex.go +++ b/sdk/auth/codex.go @@ -7,12 +7,11 @@ import ( "strings" "time" - "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/codex" - "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/browser" - // legacy client removed + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/auth/codex" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/browser" "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" - "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/misc" - "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/misc" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/util" coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/sdk/cliproxy/auth/api_key_model_alias_test.go b/sdk/cliproxy/auth/api_key_model_alias_test.go index 70915d9e37..1e7aa6568c 100644 --- a/sdk/cliproxy/auth/api_key_model_alias_test.go +++ b/sdk/cliproxy/auth/api_key_model_alias_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - internalconfig "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + internalconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) func TestLookupAPIKeyUpstreamModel(t *testing.T) { diff --git a/sdk/cliproxy/auth/conductor.go b/sdk/cliproxy/auth/conductor.go index c922a5fb01..1c0435626a 100644 --- a/sdk/cliproxy/auth/conductor.go +++ b/sdk/cliproxy/auth/conductor.go @@ -15,12 +15,12 @@ import ( "time" "github.com/google/uuid" - internalconfig "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/logging" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/util" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" + internalconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/logging" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/util" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" log "github.com/sirupsen/logrus" ) diff --git a/sdk/cliproxy/auth/conductor_executor_replace_test.go b/sdk/cliproxy/auth/conductor_executor_replace_test.go index 2ee91a87c1..c17df456d0 100644 --- a/sdk/cliproxy/auth/conductor_executor_replace_test.go +++ b/sdk/cliproxy/auth/conductor_executor_replace_test.go @@ -6,7 +6,7 @@ import ( "sync" "testing" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" ) type replaceAwareExecutor struct { diff --git a/sdk/cliproxy/auth/oauth_model_alias.go b/sdk/cliproxy/auth/oauth_model_alias.go index 992dcadadc..12bf9e67ca 100644 --- a/sdk/cliproxy/auth/oauth_model_alias.go +++ b/sdk/cliproxy/auth/oauth_model_alias.go @@ -3,8 +3,8 @@ package auth import ( "strings" - internalconfig "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" + internalconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" ) type modelAliasEntry interface { diff --git a/sdk/cliproxy/auth/oauth_model_alias_test.go b/sdk/cliproxy/auth/oauth_model_alias_test.go index e12b65975f..5678020e14 100644 --- a/sdk/cliproxy/auth/oauth_model_alias_test.go +++ b/sdk/cliproxy/auth/oauth_model_alias_test.go @@ -3,7 +3,7 @@ package auth import ( "testing" - internalconfig "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + internalconfig "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) func TestResolveOAuthUpstreamModel_SuffixPreservation(t *testing.T) { diff --git a/sdk/cliproxy/auth/selector.go b/sdk/cliproxy/auth/selector.go index 54f63a08b4..7d6de71dc5 100644 --- a/sdk/cliproxy/auth/selector.go +++ b/sdk/cliproxy/auth/selector.go @@ -13,8 +13,8 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/thinking" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/thinking" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" ) // RoundRobinSelector provides a simple provider scoped round-robin selection strategy. diff --git a/sdk/cliproxy/auth/selector_test.go b/sdk/cliproxy/auth/selector_test.go index 79431a9ada..9c004f6016 100644 --- a/sdk/cliproxy/auth/selector_test.go +++ b/sdk/cliproxy/auth/selector_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" ) func TestFillFirstSelectorPick_Deterministic(t *testing.T) { diff --git a/sdk/cliproxy/auth/types.go b/sdk/cliproxy/auth/types.go index f7175d54c7..42819b0b42 100644 --- a/sdk/cliproxy/auth/types.go +++ b/sdk/cliproxy/auth/types.go @@ -12,7 +12,7 @@ import ( "sync" "time" - baseauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth" + baseauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth" ) // PostAuthHook defines a function that is called after an Auth record is created diff --git a/sdk/cliproxy/builder.go b/sdk/cliproxy/builder.go index 5d5738134a..b48055556e 100644 --- a/sdk/cliproxy/builder.go +++ b/sdk/cliproxy/builder.go @@ -7,12 +7,12 @@ import ( "fmt" "strings" - configaccess "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/access/config_access" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/api" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v6/sdk/access" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + configaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/access/config_access" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/api" + sdkaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/access" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) // Builder constructs a Service instance with customizable providers. diff --git a/sdk/cliproxy/executor/types.go b/sdk/cliproxy/executor/types.go index 4ea8103947..3e5d9cbf8e 100644 --- a/sdk/cliproxy/executor/types.go +++ b/sdk/cliproxy/executor/types.go @@ -4,7 +4,7 @@ import ( "net/http" "net/url" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" ) // RequestedModelMetadataKey stores the client-requested model name in Options.Metadata. diff --git a/sdk/cliproxy/model_registry.go b/sdk/cliproxy/model_registry.go index 919f0a2d9b..63dc4a63f2 100644 --- a/sdk/cliproxy/model_registry.go +++ b/sdk/cliproxy/model_registry.go @@ -1,6 +1,6 @@ package cliproxy -import "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" +import "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" // ModelInfo re-exports the registry model info structure. type ModelInfo = registry.ModelInfo diff --git a/sdk/cliproxy/pipeline/context.go b/sdk/cliproxy/pipeline/context.go index fc6754eb97..dbb557aee4 100644 --- a/sdk/cliproxy/pipeline/context.go +++ b/sdk/cliproxy/pipeline/context.go @@ -4,9 +4,9 @@ import ( "context" "net/http" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" + cliproxyauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + cliproxyexecutor "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/executor" + sdktranslator "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/translator" ) // Context encapsulates execution state shared across middleware, translators, and executors. diff --git a/sdk/cliproxy/pprof_server.go b/sdk/cliproxy/pprof_server.go index 3fafef4cd4..de2a943021 100644 --- a/sdk/cliproxy/pprof_server.go +++ b/sdk/cliproxy/pprof_server.go @@ -9,7 +9,7 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" log "github.com/sirupsen/logrus" ) diff --git a/sdk/cliproxy/providers.go b/sdk/cliproxy/providers.go index a8a1b01375..2e286c5031 100644 --- a/sdk/cliproxy/providers.go +++ b/sdk/cliproxy/providers.go @@ -3,8 +3,8 @@ package cliproxy import ( "context" - "github.com/router-for-me/CLIProxyAPI/v6/internal/watcher" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/watcher" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) // NewFileTokenClientProvider returns the default token-backed client loader. diff --git a/sdk/cliproxy/rtprovider.go b/sdk/cliproxy/rtprovider.go index dad4fc2387..5c44be2b40 100644 --- a/sdk/cliproxy/rtprovider.go +++ b/sdk/cliproxy/rtprovider.go @@ -8,7 +8,7 @@ import ( "strings" "sync" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" "golang.org/x/net/proxy" ) diff --git a/sdk/cliproxy/service.go b/sdk/cliproxy/service.go index 337d02147d..1efcc6a838 100644 --- a/sdk/cliproxy/service.go +++ b/sdk/cliproxy/service.go @@ -12,18 +12,18 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/api" - kiroauth "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/auth/kiro" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/executor" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/registry" - _ "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/usage" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/watcher" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/wsrelay" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v6/sdk/access" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/usage" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/api" + kiroauth "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/auth/kiro" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/executor" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/registry" + _ "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/watcher" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/wsrelay" + sdkaccess "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/access" + sdkAuth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/auth" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/usage" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" log "github.com/sirupsen/logrus" ) diff --git a/sdk/cliproxy/service_codex_executor_binding_test.go b/sdk/cliproxy/service_codex_executor_binding_test.go index bb4fc84e10..2dbb8bda6e 100644 --- a/sdk/cliproxy/service_codex_executor_binding_test.go +++ b/sdk/cliproxy/service_codex_executor_binding_test.go @@ -3,8 +3,8 @@ package cliproxy import ( "testing" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" ) func TestEnsureExecutorsForAuth_CodexDoesNotReplaceInNormalMode(t *testing.T) { diff --git a/sdk/cliproxy/service_excluded_models_test.go b/sdk/cliproxy/service_excluded_models_test.go index 198a5bed73..f897889be6 100644 --- a/sdk/cliproxy/service_excluded_models_test.go +++ b/sdk/cliproxy/service_excluded_models_test.go @@ -4,8 +4,8 @@ import ( "strings" "testing" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" ) func TestRegisterModelsForAuth_UsesPreMergedExcludedModelsAttribute(t *testing.T) { diff --git a/sdk/cliproxy/service_oauth_model_alias_test.go b/sdk/cliproxy/service_oauth_model_alias_test.go index 2f90d1dfb0..b676c1d1ab 100644 --- a/sdk/cliproxy/service_oauth_model_alias_test.go +++ b/sdk/cliproxy/service_oauth_model_alias_test.go @@ -3,7 +3,7 @@ package cliproxy import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v6/sdk/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/config" ) func TestApplyOAuthModelAlias_Rename(t *testing.T) { diff --git a/sdk/cliproxy/types.go b/sdk/cliproxy/types.go index 0f63276de1..8b37f9375a 100644 --- a/sdk/cliproxy/types.go +++ b/sdk/cliproxy/types.go @@ -6,9 +6,9 @@ package cliproxy import ( "context" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/watcher" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/watcher" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) // TokenClientProvider loads clients backed by stored authentication tokens. diff --git a/sdk/cliproxy/watcher.go b/sdk/cliproxy/watcher.go index ee94cbdc1d..1d5500f2d0 100644 --- a/sdk/cliproxy/watcher.go +++ b/sdk/cliproxy/watcher.go @@ -3,9 +3,9 @@ package cliproxy import ( "context" - "github.com/router-for-me/CLIProxyAPI/v6/pkg/llmproxy/watcher" - coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" + "github.com/kooshapari/cliproxyapi-plusplus/v6/pkg/llmproxy/watcher" + coreauth "github.com/kooshapari/cliproxyapi-plusplus/v6/sdk/cliproxy/auth" + "github.com/kooshapari/cliproxyapi-plusplus/v6/internal/config" ) func defaultWatcherFactory(configPath, authDir string, reload func(*config.Config)) (*WatcherWrapper, error) {