diff --git a/cmd/fetch_antigravity_models/main.go b/cmd/fetch_antigravity_models/main.go index 6e34eda19fc..feda2ffe716 100644 --- a/cmd/fetch_antigravity_models/main.go +++ b/cmd/fetch_antigravity_models/main.go @@ -26,13 +26,13 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - sdkauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/proxyutil" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + sdkauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/proxyutil" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/cmd/fetch_codex_models/main.go b/cmd/fetch_codex_models/main.go index 1f787ffe2ba..5a05811e07b 100644 --- a/cmd/fetch_codex_models/main.go +++ b/cmd/fetch_codex_models/main.go @@ -29,13 +29,13 @@ import ( "strings" "time" - codexauth "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - sdkauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/proxyutil" + codexauth "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/codex" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + sdkauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/proxyutil" log "github.com/sirupsen/logrus" ) diff --git a/cmd/server/main.go b/cmd/server/main.go index 81c37cd7f75..5157c54a772 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -16,27 +16,27 @@ import ( "strings" "time" + configaccess "github.com/awsl-project/CLIProxyAPI/v7/internal/access/config_access" + "github.com/awsl-project/CLIProxyAPI/v7/internal/api" + "github.com/awsl-project/CLIProxyAPI/v7/internal/buildinfo" + "github.com/awsl-project/CLIProxyAPI/v7/internal/cmd" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/home" + "github.com/awsl-project/CLIProxyAPI/v7/internal/homeplugins" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/internal/managementasset" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginhost" + "github.com/awsl-project/CLIProxyAPI/v7/internal/redisqueue" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/safemode" + "github.com/awsl-project/CLIProxyAPI/v7/internal/store" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/tui" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/joho/godotenv" - configaccess "github.com/router-for-me/CLIProxyAPI/v7/internal/access/config_access" - "github.com/router-for-me/CLIProxyAPI/v7/internal/api" - "github.com/router-for-me/CLIProxyAPI/v7/internal/buildinfo" - "github.com/router-for-me/CLIProxyAPI/v7/internal/cmd" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/home" - "github.com/router-for-me/CLIProxyAPI/v7/internal/homeplugins" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v7/internal/managementasset" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginhost" - "github.com/router-for-me/CLIProxyAPI/v7/internal/redisqueue" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/safemode" - "github.com/router-for-me/CLIProxyAPI/v7/internal/store" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator" - "github.com/router-for-me/CLIProxyAPI/v7/internal/tui" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/cmd/server/main_test.go b/cmd/server/main_test.go index fce4be93bb8..2865f28a0f7 100644 --- a/cmd/server/main_test.go +++ b/cmd/server/main_test.go @@ -3,7 +3,7 @@ package main import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" ) func TestShouldEnableExampleAPIKeySafeMode(t *testing.T) { diff --git a/cmd/validate_codex_models/main.go b/cmd/validate_codex_models/main.go index 0a44a8d5c70..854744c40e9 100644 --- a/cmd/validate_codex_models/main.go +++ b/cmd/validate_codex_models/main.go @@ -7,7 +7,7 @@ import ( "os" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" ) func main() { diff --git a/examples/custom-provider/main.go b/examples/custom-provider/main.go index 6f37c341deb..c71c8ea7ef2 100644 --- a/examples/custom-provider/main.go +++ b/examples/custom-provider/main.go @@ -23,15 +23,15 @@ import ( "strings" "time" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + clipexec "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/logging" + sdktr "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - clipexec "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/logging" - sdktr "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" ) const ( diff --git a/examples/http-request/main.go b/examples/http-request/main.go index 1e0215ecea0..51846355b27 100644 --- a/examples/http-request/main.go +++ b/examples/http-request/main.go @@ -16,8 +16,8 @@ import ( "strings" "time" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - clipexec "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + clipexec "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" log "github.com/sirupsen/logrus" ) diff --git a/examples/plugin/auth/go/go.mod b/examples/plugin/auth/go/go.mod index f084d0a60a1..ae3a235440c 100644 --- a/examples/plugin/auth/go/go.mod +++ b/examples/plugin/auth/go/go.mod @@ -1,3 +1,3 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/auth/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/auth/go go 1.26 diff --git a/examples/plugin/claude-web-search-router/go/execute_stream.go b/examples/plugin/claude-web-search-router/go/execute_stream.go index 1177731b000..35403d2880c 100644 --- a/examples/plugin/claude-web-search-router/go/execute_stream.go +++ b/examples/plugin/claude-web-search-router/go/execute_stream.go @@ -7,7 +7,7 @@ import ( "net/http" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) type streamOrchestrationRunner func(context.Context, pluginapi.ExecutorRequest, string, string) error diff --git a/examples/plugin/claude-web-search-router/go/execution_fallback.go b/examples/plugin/claude-web-search-router/go/execution_fallback.go index 7fa95a62505..475602b0c8c 100644 --- a/examples/plugin/claude-web-search-router/go/execution_fallback.go +++ b/examples/plugin/claude-web-search-router/go/execution_fallback.go @@ -8,8 +8,8 @@ import ( "net/http" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) type executionPlan struct { diff --git a/examples/plugin/claude-web-search-router/go/execution_route_test.go b/examples/plugin/claude-web-search-router/go/execution_route_test.go index 2bf8cabc82d..f8526261a4d 100644 --- a/examples/plugin/claude-web-search-router/go/execution_route_test.go +++ b/examples/plugin/claude-web-search-router/go/execution_route_test.go @@ -3,7 +3,7 @@ package main import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func TestBuildExecutionPlansForExecuteRespectsRouteTavily(t *testing.T) { diff --git a/examples/plugin/claude-web-search-router/go/fallback.go b/examples/plugin/claude-web-search-router/go/fallback.go index 964b27dcc81..de16e6bb405 100644 --- a/examples/plugin/claude-web-search-router/go/fallback.go +++ b/examples/plugin/claude-web-search-router/go/fallback.go @@ -3,7 +3,7 @@ package main import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) // defaultWebSearchFallbackChain is the ordered backend try list when route=fallback. diff --git a/examples/plugin/claude-web-search-router/go/fallback_test.go b/examples/plugin/claude-web-search-router/go/fallback_test.go index 4a213a06ca0..84d65268892 100644 --- a/examples/plugin/claude-web-search-router/go/fallback_test.go +++ b/examples/plugin/claude-web-search-router/go/fallback_test.go @@ -4,8 +4,8 @@ import ( "encoding/json" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func claudeWebSearchRouteBody(t *testing.T) []byte { diff --git a/examples/plugin/claude-web-search-router/go/go.mod b/examples/plugin/claude-web-search-router/go/go.mod index 679fb85886d..4767f6fff6e 100644 --- a/examples/plugin/claude-web-search-router/go/go.mod +++ b/examples/plugin/claude-web-search-router/go/go.mod @@ -1,9 +1,9 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/claude-web-search-router/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/claude-web-search-router/go go 1.26.0 require ( - github.com/router-for-me/CLIProxyAPI/v7 v7.0.0 + github.com/awsl-project/CLIProxyAPI/v7 v7.0.0 github.com/tidwall/gjson v1.18.0 gopkg.in/yaml.v3 v3.0.1 ) @@ -15,4 +15,4 @@ require ( golang.org/x/sys v0.38.0 // indirect ) -replace github.com/router-for-me/CLIProxyAPI/v7 => ../../../.. +replace github.com/awsl-project/CLIProxyAPI/v7 => ../../../.. diff --git a/examples/plugin/claude-web-search-router/go/main.go b/examples/plugin/claude-web-search-router/go/main.go index ad82b1f5eba..40dd758b0df 100644 --- a/examples/plugin/claude-web-search-router/go/main.go +++ b/examples/plugin/claude-web-search-router/go/main.go @@ -64,8 +64,8 @@ import ( "sync/atomic" "unsafe" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" "gopkg.in/yaml.v3" ) diff --git a/examples/plugin/claude-web-search-router/go/model_resolve.go b/examples/plugin/claude-web-search-router/go/model_resolve.go index 88295e6ec14..46a3a5e6605 100644 --- a/examples/plugin/claude-web-search-router/go/model_resolve.go +++ b/examples/plugin/claude-web-search-router/go/model_resolve.go @@ -3,7 +3,7 @@ package main import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" ) const ( diff --git a/examples/plugin/claude-web-search-router/go/model_resolve_test.go b/examples/plugin/claude-web-search-router/go/model_resolve_test.go index 66b25958c77..b8489708894 100644 --- a/examples/plugin/claude-web-search-router/go/model_resolve_test.go +++ b/examples/plugin/claude-web-search-router/go/model_resolve_test.go @@ -3,7 +3,7 @@ package main import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" ) func TestResolveCodexWebSearchTargetModelNeverUsesClaudeName(t *testing.T) { diff --git a/examples/plugin/claude-web-search-router/go/stream_forward.go b/examples/plugin/claude-web-search-router/go/stream_forward.go index 5694ca477ce..10a00252818 100644 --- a/examples/plugin/claude-web-search-router/go/stream_forward.go +++ b/examples/plugin/claude-web-search-router/go/stream_forward.go @@ -8,8 +8,8 @@ import ( "net/http" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) type rpcStreamEmitRequest struct { diff --git a/examples/plugin/claude-web-search-router/go/stream_forward_test.go b/examples/plugin/claude-web-search-router/go/stream_forward_test.go index b8956d13fa6..764e8b7339f 100644 --- a/examples/plugin/claude-web-search-router/go/stream_forward_test.go +++ b/examples/plugin/claude-web-search-router/go/stream_forward_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func TestLooksLikeOpenAIResponsesSSE(t *testing.T) { diff --git a/examples/plugin/claude-web-search-router/go/tavily_test.go b/examples/plugin/claude-web-search-router/go/tavily_test.go index 4d48a209312..854e656d5a8 100644 --- a/examples/plugin/claude-web-search-router/go/tavily_test.go +++ b/examples/plugin/claude-web-search-router/go/tavily_test.go @@ -9,7 +9,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" "github.com/tidwall/gjson" ) diff --git a/examples/plugin/cli/go/go.mod b/examples/plugin/cli/go/go.mod index d5061d1f68d..3224b71eddc 100644 --- a/examples/plugin/cli/go/go.mod +++ b/examples/plugin/cli/go/go.mod @@ -1,3 +1,3 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/cli/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/cli/go go 1.26 diff --git a/examples/plugin/codex-service-tier/go/go.mod b/examples/plugin/codex-service-tier/go/go.mod index 599588ee17f..f2b954c67b5 100644 --- a/examples/plugin/codex-service-tier/go/go.mod +++ b/examples/plugin/codex-service-tier/go/go.mod @@ -1,9 +1,9 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/codex-service-tier/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/codex-service-tier/go go 1.26.0 require ( - github.com/router-for-me/CLIProxyAPI/v7 v7.0.0 + github.com/awsl-project/CLIProxyAPI/v7 v7.0.0 github.com/tidwall/sjson v1.2.5 gopkg.in/yaml.v3 v3.0.1 ) @@ -14,4 +14,4 @@ require ( github.com/tidwall/pretty v1.2.0 // indirect ) -replace github.com/router-for-me/CLIProxyAPI/v7 => ../../../.. +replace github.com/awsl-project/CLIProxyAPI/v7 => ../../../.. diff --git a/examples/plugin/codex-service-tier/go/main.go b/examples/plugin/codex-service-tier/go/main.go index 09726d16538..d8ee44700dd 100644 --- a/examples/plugin/codex-service-tier/go/main.go +++ b/examples/plugin/codex-service-tier/go/main.go @@ -39,8 +39,8 @@ import ( "sync/atomic" "unsafe" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" "github.com/tidwall/sjson" "gopkg.in/yaml.v3" ) diff --git a/examples/plugin/executor/go/go.mod b/examples/plugin/executor/go/go.mod index d0c0ce17805..ba2a41c0f7f 100644 --- a/examples/plugin/executor/go/go.mod +++ b/examples/plugin/executor/go/go.mod @@ -1,3 +1,3 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/executor/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/executor/go go 1.26 diff --git a/examples/plugin/frontend-auth-exclusive/go/go.mod b/examples/plugin/frontend-auth-exclusive/go/go.mod index c5f0e70a4d3..52a5b0f14b6 100644 --- a/examples/plugin/frontend-auth-exclusive/go/go.mod +++ b/examples/plugin/frontend-auth-exclusive/go/go.mod @@ -1,7 +1,7 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/frontend-auth-exclusive/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/frontend-auth-exclusive/go go 1.26.0 -require github.com/router-for-me/CLIProxyAPI/v7 v7.0.0 +require github.com/awsl-project/CLIProxyAPI/v7 v7.0.0 -replace github.com/router-for-me/CLIProxyAPI/v7 => ../../../.. +replace github.com/awsl-project/CLIProxyAPI/v7 => ../../../.. diff --git a/examples/plugin/frontend-auth-exclusive/go/main.go b/examples/plugin/frontend-auth-exclusive/go/main.go index 9896380ad9d..31e228a4d73 100644 --- a/examples/plugin/frontend-auth-exclusive/go/main.go +++ b/examples/plugin/frontend-auth-exclusive/go/main.go @@ -40,8 +40,8 @@ import ( "encoding/json" "unsafe" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) type envelope struct { diff --git a/examples/plugin/frontend-auth/go/go.mod b/examples/plugin/frontend-auth/go/go.mod index 62bbf528ad1..6fc6fa94eb7 100644 --- a/examples/plugin/frontend-auth/go/go.mod +++ b/examples/plugin/frontend-auth/go/go.mod @@ -1,3 +1,3 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/frontend-auth/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/frontend-auth/go go 1.26 diff --git a/examples/plugin/host-callback-auth-files/go/go.mod b/examples/plugin/host-callback-auth-files/go/go.mod index c67dbc66f85..5da1931f449 100644 --- a/examples/plugin/host-callback-auth-files/go/go.mod +++ b/examples/plugin/host-callback-auth-files/go/go.mod @@ -1,7 +1,7 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/host-callback-auth-files/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/host-callback-auth-files/go go 1.26.0 -require github.com/router-for-me/CLIProxyAPI/v7 v7.0.0 +require github.com/awsl-project/CLIProxyAPI/v7 v7.0.0 -replace github.com/router-for-me/CLIProxyAPI/v7 => ../../../.. +replace github.com/awsl-project/CLIProxyAPI/v7 => ../../../.. diff --git a/examples/plugin/host-callback-auth-files/go/main.go b/examples/plugin/host-callback-auth-files/go/main.go index 25663762833..b6869333771 100644 --- a/examples/plugin/host-callback-auth-files/go/main.go +++ b/examples/plugin/host-callback-auth-files/go/main.go @@ -65,8 +65,8 @@ import ( "strings" "unsafe" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) const ( diff --git a/examples/plugin/host-callback/go/go.mod b/examples/plugin/host-callback/go/go.mod index 73c4e0abdcf..8f08dd73b4b 100644 --- a/examples/plugin/host-callback/go/go.mod +++ b/examples/plugin/host-callback/go/go.mod @@ -1,3 +1,3 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/host-callback/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/host-callback/go go 1.26 diff --git a/examples/plugin/host-model-callback/go/go.mod b/examples/plugin/host-model-callback/go/go.mod index 95672b7e604..0bfe6421c68 100644 --- a/examples/plugin/host-model-callback/go/go.mod +++ b/examples/plugin/host-model-callback/go/go.mod @@ -1,7 +1,7 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/host-model-callback/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/host-model-callback/go go 1.26.0 -require github.com/router-for-me/CLIProxyAPI/v7 v7.0.0 +require github.com/awsl-project/CLIProxyAPI/v7 v7.0.0 -replace github.com/router-for-me/CLIProxyAPI/v7 => ../../../.. +replace github.com/awsl-project/CLIProxyAPI/v7 => ../../../.. diff --git a/examples/plugin/host-model-callback/go/main.go b/examples/plugin/host-model-callback/go/main.go index 31361116148..c5341e26919 100644 --- a/examples/plugin/host-model-callback/go/main.go +++ b/examples/plugin/host-model-callback/go/main.go @@ -66,8 +66,8 @@ import ( "strings" "unsafe" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) const ( diff --git a/examples/plugin/management-api/go/go.mod b/examples/plugin/management-api/go/go.mod index 51f802bf93e..e426c684f21 100644 --- a/examples/plugin/management-api/go/go.mod +++ b/examples/plugin/management-api/go/go.mod @@ -1,3 +1,3 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/management-api/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/management-api/go go 1.26 diff --git a/examples/plugin/model/go/go.mod b/examples/plugin/model/go/go.mod index fb459720e5b..d56c2e51b09 100644 --- a/examples/plugin/model/go/go.mod +++ b/examples/plugin/model/go/go.mod @@ -1,3 +1,3 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/model/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/model/go go 1.26 diff --git a/examples/plugin/protocol-format/go/go.mod b/examples/plugin/protocol-format/go/go.mod index da2a1db3285..a12e434cabc 100644 --- a/examples/plugin/protocol-format/go/go.mod +++ b/examples/plugin/protocol-format/go/go.mod @@ -1,3 +1,3 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/protocol-format/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/protocol-format/go go 1.26 diff --git a/examples/plugin/request-normalizer/go/go.mod b/examples/plugin/request-normalizer/go/go.mod index 8ccec12186f..4664c497187 100644 --- a/examples/plugin/request-normalizer/go/go.mod +++ b/examples/plugin/request-normalizer/go/go.mod @@ -1,3 +1,3 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/request-normalizer/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/request-normalizer/go go 1.26 diff --git a/examples/plugin/request-translator/go/go.mod b/examples/plugin/request-translator/go/go.mod index 186b756cf0b..cf364391453 100644 --- a/examples/plugin/request-translator/go/go.mod +++ b/examples/plugin/request-translator/go/go.mod @@ -1,3 +1,3 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/request-translator/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/request-translator/go go 1.26 diff --git a/examples/plugin/response-normalizer/go/go.mod b/examples/plugin/response-normalizer/go/go.mod index cd260216680..78a6ed9f4b3 100644 --- a/examples/plugin/response-normalizer/go/go.mod +++ b/examples/plugin/response-normalizer/go/go.mod @@ -1,3 +1,3 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/response-normalizer/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/response-normalizer/go go 1.26 diff --git a/examples/plugin/response-translator/go/go.mod b/examples/plugin/response-translator/go/go.mod index 5f53fd12437..a75b6e897a0 100644 --- a/examples/plugin/response-translator/go/go.mod +++ b/examples/plugin/response-translator/go/go.mod @@ -1,3 +1,3 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/response-translator/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/response-translator/go go 1.26 diff --git a/examples/plugin/scheduler/go/go.mod b/examples/plugin/scheduler/go/go.mod index 99ead983663..4ccf957641a 100644 --- a/examples/plugin/scheduler/go/go.mod +++ b/examples/plugin/scheduler/go/go.mod @@ -1,10 +1,10 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/scheduler/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/scheduler/go go 1.26.0 require ( - github.com/router-for-me/CLIProxyAPI/v7 v7.0.0 + github.com/awsl-project/CLIProxyAPI/v7 v7.0.0 gopkg.in/yaml.v3 v3.0.1 ) -replace github.com/router-for-me/CLIProxyAPI/v7 => ../../../.. +replace github.com/awsl-project/CLIProxyAPI/v7 => ../../../.. diff --git a/examples/plugin/scheduler/go/main.go b/examples/plugin/scheduler/go/main.go index d9190c34eec..4b554c27892 100644 --- a/examples/plugin/scheduler/go/main.go +++ b/examples/plugin/scheduler/go/main.go @@ -39,8 +39,8 @@ import ( "sync/atomic" "unsafe" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" "gopkg.in/yaml.v3" ) diff --git a/examples/plugin/scripts/generate_examples.py b/examples/plugin/scripts/generate_examples.py index ca13082de49..bf014725e42 100644 --- a/examples/plugin/scripts/generate_examples.py +++ b/examples/plugin/scripts/generate_examples.py @@ -191,7 +191,7 @@ def generate_go(cap: Capability) -> None: \t\tcallHost("host.http.do", []byte(`{{"method":"GET","url":"https://example.com","headers":{{"user-agent":["{pid}"]}}}}`)) """ method_cases.append(f'\tcase "{method}":\n{host_callback_call}\t\treturn okEnvelopeJSON({json.dumps(result_for_method(cap, "go", method))})') - go_mod = f"""module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/{slug}/go + go_mod = f"""module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/{slug}/go go 1.26 """ diff --git a/examples/plugin/simple/go/go.mod b/examples/plugin/simple/go/go.mod index 7dd60e3f421..9c0b3991764 100644 --- a/examples/plugin/simple/go/go.mod +++ b/examples/plugin/simple/go/go.mod @@ -1,7 +1,7 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/simple/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/simple/go go 1.26.0 -require github.com/router-for-me/CLIProxyAPI/v7 v7.0.0 +require github.com/awsl-project/CLIProxyAPI/v7 v7.0.0 -replace github.com/router-for-me/CLIProxyAPI/v7 => ../../../.. +replace github.com/awsl-project/CLIProxyAPI/v7 => ../../../.. diff --git a/examples/plugin/simple/go/main.go b/examples/plugin/simple/go/main.go index 6123fa5d11c..9b218abc88f 100644 --- a/examples/plugin/simple/go/main.go +++ b/examples/plugin/simple/go/main.go @@ -43,8 +43,8 @@ import ( "time" "unsafe" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) var usageCount atomic.Int64 diff --git a/examples/plugin/thinking/go/go.mod b/examples/plugin/thinking/go/go.mod index 940ed3e1825..40917c59e86 100644 --- a/examples/plugin/thinking/go/go.mod +++ b/examples/plugin/thinking/go/go.mod @@ -1,3 +1,3 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/thinking/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/thinking/go go 1.26 diff --git a/examples/plugin/usage/go/go.mod b/examples/plugin/usage/go/go.mod index fb86bf69070..81d35ce465a 100644 --- a/examples/plugin/usage/go/go.mod +++ b/examples/plugin/usage/go/go.mod @@ -1,3 +1,3 @@ -module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/usage/go +module github.com/awsl-project/CLIProxyAPI/v7/examples/plugin/usage/go go 1.26 diff --git a/examples/translator/main.go b/examples/translator/main.go index 524a303eb82..278c8cac3bc 100644 --- a/examples/translator/main.go +++ b/examples/translator/main.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" - _ "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator/builtin" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" + _ "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator/builtin" ) func main() { diff --git a/go.mod b/go.mod index c83d19ce95b..4ec1f5bb5cd 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/router-for-me/CLIProxyAPI/v7 +module github.com/awsl-project/CLIProxyAPI/v7 go 1.26.0 diff --git a/internal/access/config_access/provider.go b/internal/access/config_access/provider.go index 915160b76f5..114d6594437 100644 --- a/internal/access/config_access/provider.go +++ b/internal/access/config_access/provider.go @@ -5,8 +5,8 @@ import ( "net/http" "strings" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v7/sdk/access" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" + sdkaccess "github.com/awsl-project/CLIProxyAPI/v7/sdk/access" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" ) // Register ensures the config-access provider is available to the access manager. diff --git a/internal/access/reconcile.go b/internal/access/reconcile.go index d71e2b8d284..6a24334ba5a 100644 --- a/internal/access/reconcile.go +++ b/internal/access/reconcile.go @@ -6,9 +6,9 @@ import ( "sort" "strings" - configaccess "github.com/router-for-me/CLIProxyAPI/v7/internal/access/config_access" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v7/sdk/access" + configaccess "github.com/awsl-project/CLIProxyAPI/v7/internal/access/config_access" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + sdkaccess "github.com/awsl-project/CLIProxyAPI/v7/sdk/access" log "github.com/sirupsen/logrus" ) diff --git a/internal/api/handlers/management/api_key_usage.go b/internal/api/handlers/management/api_key_usage.go index 88ee8b326a4..5139435cd4b 100644 --- a/internal/api/handlers/management/api_key_usage.go +++ b/internal/api/handlers/management/api_key_usage.go @@ -5,8 +5,8 @@ import ( "strings" "time" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/gin-gonic/gin" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" ) type apiKeyUsageEntry struct { diff --git a/internal/api/handlers/management/api_key_usage_test.go b/internal/api/handlers/management/api_key_usage_test.go index c933e74e673..9a21ed93285 100644 --- a/internal/api/handlers/management/api_key_usage_test.go +++ b/internal/api/handlers/management/api_key_usage_test.go @@ -7,9 +7,9 @@ import ( "net/http/httptest" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" ) func sumRecentRequestBuckets(buckets []coreauth.RecentRequestBucket) (int64, int64) { diff --git a/internal/api/handlers/management/api_tools.go b/internal/api/handlers/management/api_tools.go index e125192021c..e2f44134fa4 100644 --- a/internal/api/handlers/management/api_tools.go +++ b/internal/api/handlers/management/api_tools.go @@ -10,10 +10,10 @@ import ( "strings" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/proxyutil" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/proxyutil" log "github.com/sirupsen/logrus" ) diff --git a/internal/api/handlers/management/api_tools_test.go b/internal/api/handlers/management/api_tools_test.go index ca1f31372db..b39df018c84 100644 --- a/internal/api/handlers/management/api_tools_test.go +++ b/internal/api/handlers/management/api_tools_test.go @@ -5,9 +5,9 @@ import ( "net/http" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" ) func TestAPICallTransportDirectBypassesGlobalProxy(t *testing.T) { diff --git a/internal/api/handlers/management/auth_files.go b/internal/api/handlers/management/auth_files.go index 17f20286b75..7f7a36d33e8 100644 --- a/internal/api/handlers/management/auth_files.go +++ b/internal/api/handlers/management/auth_files.go @@ -21,21 +21,21 @@ import ( "sync" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/antigravity" + "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/claude" + "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/codex" + "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/kimi" + xaiauth "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/xai" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginhost" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher/synthesizer" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/antigravity" - "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/claude" - "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/kimi" - xaiauth "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/xai" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginhost" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher/synthesizer" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/internal/api/handlers/management/auth_files_batch_test.go b/internal/api/handlers/management/auth_files_batch_test.go index 59b631c814c..34cb4cf2546 100644 --- a/internal/api/handlers/management/auth_files_batch_test.go +++ b/internal/api/handlers/management/auth_files_batch_test.go @@ -11,9 +11,9 @@ import ( "path/filepath" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" ) func TestUploadAuthFile_BatchMultipart(t *testing.T) { diff --git a/internal/api/handlers/management/auth_files_delete_test.go b/internal/api/handlers/management/auth_files_delete_test.go index 1287ab1221c..91d133c6bee 100644 --- a/internal/api/handlers/management/auth_files_delete_test.go +++ b/internal/api/handlers/management/auth_files_delete_test.go @@ -10,9 +10,9 @@ import ( "path/filepath" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" ) func TestDeleteAuthFile_UsesAuthPathFromManager(t *testing.T) { diff --git a/internal/api/handlers/management/auth_files_download_test.go b/internal/api/handlers/management/auth_files_download_test.go index b4e39fce0d0..9b68152c655 100644 --- a/internal/api/handlers/management/auth_files_download_test.go +++ b/internal/api/handlers/management/auth_files_download_test.go @@ -8,8 +8,8 @@ import ( "path/filepath" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" ) func TestDownloadAuthFile_ReturnsFile(t *testing.T) { diff --git a/internal/api/handlers/management/auth_files_download_windows_test.go b/internal/api/handlers/management/auth_files_download_windows_test.go index bc71c087e30..66fe8735085 100644 --- a/internal/api/handlers/management/auth_files_download_windows_test.go +++ b/internal/api/handlers/management/auth_files_download_windows_test.go @@ -10,8 +10,8 @@ import ( "path/filepath" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" ) func TestDownloadAuthFile_PreventsWindowsSlashTraversal(t *testing.T) { diff --git a/internal/api/handlers/management/auth_files_patch_fields_test.go b/internal/api/handlers/management/auth_files_patch_fields_test.go index e01f1d5ce90..c9041c22996 100644 --- a/internal/api/handlers/management/auth_files_patch_fields_test.go +++ b/internal/api/handlers/management/auth_files_patch_fields_test.go @@ -10,10 +10,10 @@ import ( "strings" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + fileauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - fileauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" ) func TestPatchAuthFileFields_MergeHeadersAndDeleteEmptyValues(t *testing.T) { diff --git a/internal/api/handlers/management/auth_files_plugin_oauth_test.go b/internal/api/handlers/management/auth_files_plugin_oauth_test.go index 452500fe492..fc9640dcf45 100644 --- a/internal/api/handlers/management/auth_files_plugin_oauth_test.go +++ b/internal/api/handlers/management/auth_files_plugin_oauth_test.go @@ -11,11 +11,11 @@ import ( "strings" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginhost" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginhost" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" ) func TestPluginLoginPollAuthsExpandsMultipleAuths(t *testing.T) { diff --git a/internal/api/handlers/management/auth_files_project_id_test.go b/internal/api/handlers/management/auth_files_project_id_test.go index 870b61cbed2..3381e9d62e3 100644 --- a/internal/api/handlers/management/auth_files_project_id_test.go +++ b/internal/api/handlers/management/auth_files_project_id_test.go @@ -9,9 +9,9 @@ import ( "path/filepath" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" ) func TestListAuthFiles_IncludesProjectIDFromManager(t *testing.T) { diff --git a/internal/api/handlers/management/auth_files_recent_requests_test.go b/internal/api/handlers/management/auth_files_recent_requests_test.go index f3c5107caf9..dba5bf0edc9 100644 --- a/internal/api/handlers/management/auth_files_recent_requests_test.go +++ b/internal/api/handlers/management/auth_files_recent_requests_test.go @@ -7,9 +7,9 @@ import ( "net/http/httptest" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" ) func TestListAuthFiles_IncludesRecentRequestsBuckets(t *testing.T) { diff --git a/internal/api/handlers/management/auth_files_upload_test.go b/internal/api/handlers/management/auth_files_upload_test.go index 108c8bac736..207cddbee94 100644 --- a/internal/api/handlers/management/auth_files_upload_test.go +++ b/internal/api/handlers/management/auth_files_upload_test.go @@ -8,9 +8,9 @@ import ( "net/http/httptest" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" ) func TestUploadAuthFile_PreservesPriorityAttributes(t *testing.T) { diff --git a/internal/api/handlers/management/config_apikey_disable.go b/internal/api/handlers/management/config_apikey_disable.go index f935a8b5f86..47b87881cdd 100644 --- a/internal/api/handlers/management/config_apikey_disable.go +++ b/internal/api/handlers/management/config_apikey_disable.go @@ -4,9 +4,9 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher/synthesizer" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher/synthesizer" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) const configAPIKeyDisablePattern = "*" diff --git a/internal/api/handlers/management/config_apikey_disable_test.go b/internal/api/handlers/management/config_apikey_disable_test.go index 68b3d5a5e9f..1f7414efcd7 100644 --- a/internal/api/handlers/management/config_apikey_disable_test.go +++ b/internal/api/handlers/management/config_apikey_disable_test.go @@ -3,9 +3,9 @@ package management import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher/synthesizer" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher/synthesizer" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) func TestSetConfigAPIKeyExcludedAll(t *testing.T) { diff --git a/internal/api/handlers/management/config_auth_index.go b/internal/api/handlers/management/config_auth_index.go index 3ab08c1ce9a..76108be0566 100644 --- a/internal/api/handlers/management/config_auth_index.go +++ b/internal/api/handlers/management/config_auth_index.go @@ -4,8 +4,8 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher/synthesizer" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher/synthesizer" ) type geminiKeyWithAuthIndex struct { diff --git a/internal/api/handlers/management/config_basic.go b/internal/api/handlers/management/config_basic.go index a0818aa8aeb..31548b3090b 100644 --- a/internal/api/handlers/management/config_basic.go +++ b/internal/api/handlers/management/config_basic.go @@ -10,10 +10,10 @@ import ( "strings" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" log "github.com/sirupsen/logrus" "gopkg.in/yaml.v3" ) diff --git a/internal/api/handlers/management/config_lists.go b/internal/api/handlers/management/config_lists.go index b4138127df4..3e233555ee4 100644 --- a/internal/api/handlers/management/config_lists.go +++ b/internal/api/handlers/management/config_lists.go @@ -5,8 +5,8 @@ import ( "fmt" "strings" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" ) // Generic helpers for list[string] diff --git a/internal/api/handlers/management/config_lists_delete_keys_test.go b/internal/api/handlers/management/config_lists_delete_keys_test.go index 7451ee1f72f..c374b5169cf 100644 --- a/internal/api/handlers/management/config_lists_delete_keys_test.go +++ b/internal/api/handlers/management/config_lists_delete_keys_test.go @@ -7,8 +7,8 @@ import ( "path/filepath" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" ) func writeTestConfigFile(t *testing.T) string { diff --git a/internal/api/handlers/management/config_openai_compat_test.go b/internal/api/handlers/management/config_openai_compat_test.go index 88f3c90d52f..151c9dba8a0 100644 --- a/internal/api/handlers/management/config_openai_compat_test.go +++ b/internal/api/handlers/management/config_openai_compat_test.go @@ -6,8 +6,8 @@ import ( "net/http/httptest" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" ) func TestGetOpenAICompatIncludesDisableCooling(t *testing.T) { diff --git a/internal/api/handlers/management/config_xai_key_test.go b/internal/api/handlers/management/config_xai_key_test.go index f29c9cd4185..862b2058eca 100644 --- a/internal/api/handlers/management/config_xai_key_test.go +++ b/internal/api/handlers/management/config_xai_key_test.go @@ -6,8 +6,8 @@ import ( "strings" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" ) func TestPatchXAIKeyUpdatesExecutionFields(t *testing.T) { diff --git a/internal/api/handlers/management/handler.go b/internal/api/handlers/management/handler.go index 78fd505d9be..ac657d41241 100644 --- a/internal/api/handlers/management/handler.go +++ b/internal/api/handlers/management/handler.go @@ -13,13 +13,13 @@ import ( "sync" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/buildinfo" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginhost" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginstore" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/buildinfo" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginhost" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginstore" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" "golang.org/x/crypto/bcrypt" ) diff --git a/internal/api/handlers/management/handler_test.go b/internal/api/handlers/management/handler_test.go index 148ec0303b4..1af6e767fad 100644 --- a/internal/api/handlers/management/handler_test.go +++ b/internal/api/handlers/management/handler_test.go @@ -6,9 +6,9 @@ import ( "strings" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginhost" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginhost" ) func TestAuthenticateManagementKey_LocalhostIPBan_BlocksCorrectKeyDuringBan(t *testing.T) { diff --git a/internal/api/handlers/management/logs.go b/internal/api/handlers/management/logs.go index b6de20e6aa4..b02113752b6 100644 --- a/internal/api/handlers/management/logs.go +++ b/internal/api/handlers/management/logs.go @@ -18,8 +18,8 @@ import ( "strings" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" ) const ( diff --git a/internal/api/handlers/management/logs_test.go b/internal/api/handlers/management/logs_test.go index c3b045eeecd..3b6e4a5356e 100644 --- a/internal/api/handlers/management/logs_test.go +++ b/internal/api/handlers/management/logs_test.go @@ -14,8 +14,8 @@ import ( "testing" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" ) func TestDecodeLogCursorRejectsUnsafeFiles(t *testing.T) { diff --git a/internal/api/handlers/management/model_definitions.go b/internal/api/handlers/management/model_definitions.go index 0d1b8af4378..a7c567c15c2 100644 --- a/internal/api/handlers/management/model_definitions.go +++ b/internal/api/handlers/management/model_definitions.go @@ -4,8 +4,8 @@ import ( "net/http" "strings" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" ) // GetStaticModelDefinitions returns static model metadata for a given channel. diff --git a/internal/api/handlers/management/oauth_callback_test.go b/internal/api/handlers/management/oauth_callback_test.go index 0d2e8ded2e8..4bd2238e91f 100644 --- a/internal/api/handlers/management/oauth_callback_test.go +++ b/internal/api/handlers/management/oauth_callback_test.go @@ -9,8 +9,8 @@ import ( "strings" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" ) func TestPostOAuthCallbackCreatesMissingAuthDir(t *testing.T) { diff --git a/internal/api/handlers/management/oauth_codex_concurrency_test.go b/internal/api/handlers/management/oauth_codex_concurrency_test.go index 8d1e3a95c36..67f859fd4e6 100644 --- a/internal/api/handlers/management/oauth_codex_concurrency_test.go +++ b/internal/api/handlers/management/oauth_codex_concurrency_test.go @@ -9,9 +9,9 @@ import ( "testing" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/codex" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" ) type fakeCodexOAuthService struct{} diff --git a/internal/api/handlers/management/oauth_sessions_test.go b/internal/api/handlers/management/oauth_sessions_test.go index cce61b2d320..b81af468148 100644 --- a/internal/api/handlers/management/oauth_sessions_test.go +++ b/internal/api/handlers/management/oauth_sessions_test.go @@ -9,8 +9,8 @@ import ( "testing" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" ) func TestOAuthSessionStoreCompleteKeepsShortLivedSession(t *testing.T) { diff --git a/internal/api/handlers/management/plugin_store.go b/internal/api/handlers/management/plugin_store.go index d3bef4b1f43..f5984ce1f50 100644 --- a/internal/api/handlers/management/plugin_store.go +++ b/internal/api/handlers/management/plugin_store.go @@ -12,13 +12,13 @@ import ( "sync" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/htmlsanitize" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginhost" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginstore" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/htmlsanitize" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginhost" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginstore" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" log "github.com/sirupsen/logrus" "gopkg.in/yaml.v3" ) diff --git a/internal/api/handlers/management/plugin_store_test.go b/internal/api/handlers/management/plugin_store_test.go index 1a153290586..66fadf346a6 100644 --- a/internal/api/handlers/management/plugin_store_test.go +++ b/internal/api/handlers/management/plugin_store_test.go @@ -17,9 +17,9 @@ import ( "sync" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginstore" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginstore" ) func TestListPluginStoreMergesInstalledStatus(t *testing.T) { diff --git a/internal/api/handlers/management/plugins.go b/internal/api/handlers/management/plugins.go index 76c9391ccca..ca674146e65 100644 --- a/internal/api/handlers/management/plugins.go +++ b/internal/api/handlers/management/plugins.go @@ -10,11 +10,11 @@ import ( "strconv" "strings" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/htmlsanitize" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginhost" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/htmlsanitize" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginhost" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" "gopkg.in/yaml.v3" ) diff --git a/internal/api/handlers/management/plugins_test.go b/internal/api/handlers/management/plugins_test.go index a9937194d04..88dbbded1e0 100644 --- a/internal/api/handlers/management/plugins_test.go +++ b/internal/api/handlers/management/plugins_test.go @@ -14,10 +14,10 @@ import ( "testing" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginhost" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginhost" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" "gopkg.in/yaml.v3" ) diff --git a/internal/api/handlers/management/quota_test.go b/internal/api/handlers/management/quota_test.go index aee9b1d8c23..a9c547f457d 100644 --- a/internal/api/handlers/management/quota_test.go +++ b/internal/api/handlers/management/quota_test.go @@ -9,9 +9,9 @@ import ( "testing" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" ) func TestResetQuota_UsesAuthIndex(t *testing.T) { diff --git a/internal/api/handlers/management/test_store_test.go b/internal/api/handlers/management/test_store_test.go index 2eaacd904fd..e8b56c7b625 100644 --- a/internal/api/handlers/management/test_store_test.go +++ b/internal/api/handlers/management/test_store_test.go @@ -4,7 +4,7 @@ import ( "context" "sync" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) type memoryAuthStore struct { diff --git a/internal/api/handlers/management/usage.go b/internal/api/handlers/management/usage.go index c1602c0423e..c8cee5db1ba 100644 --- a/internal/api/handlers/management/usage.go +++ b/internal/api/handlers/management/usage.go @@ -7,8 +7,8 @@ import ( "strconv" "strings" + "github.com/awsl-project/CLIProxyAPI/v7/internal/redisqueue" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/redisqueue" ) type usageQueueRecord []byte diff --git a/internal/api/handlers/management/usage_test.go b/internal/api/handlers/management/usage_test.go index a0777b06f56..f35dfcb278d 100644 --- a/internal/api/handlers/management/usage_test.go +++ b/internal/api/handlers/management/usage_test.go @@ -6,8 +6,8 @@ import ( "net/http/httptest" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/redisqueue" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/redisqueue" ) func TestGetUsageQueuePopsRequestedRecords(t *testing.T) { diff --git a/internal/api/handlers/management/vertex_import.go b/internal/api/handlers/management/vertex_import.go index bb064b9fb91..c386e044cd2 100644 --- a/internal/api/handlers/management/vertex_import.go +++ b/internal/api/handlers/management/vertex_import.go @@ -8,9 +8,9 @@ import ( "net/http" "strings" + "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/vertex" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/vertex" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" ) // ImportVertexCredential handles uploading a Vertex service account JSON and saving it as an auth record. diff --git a/internal/api/middleware/request_logging.go b/internal/api/middleware/request_logging.go index d3df474faad..d97f68b151c 100644 --- a/internal/api/middleware/request_logging.go +++ b/internal/api/middleware/request_logging.go @@ -11,10 +11,10 @@ import ( "strings" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/gin-gonic/gin" "github.com/klauspost/compress/zstd" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" ) const maxErrorOnlyCapturedRequestBodyBytes int64 = 1 << 20 // 1 MiB diff --git a/internal/api/middleware/request_logging_test.go b/internal/api/middleware/request_logging_test.go index 1fe1f4ec0fe..5dc87ab5a6f 100644 --- a/internal/api/middleware/request_logging_test.go +++ b/internal/api/middleware/request_logging_test.go @@ -10,9 +10,9 @@ import ( "strings" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" "github.com/gin-gonic/gin" "github.com/klauspost/compress/zstd" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" ) func TestShouldSkipMethodForRequestLogging(t *testing.T) { diff --git a/internal/api/middleware/response_writer.go b/internal/api/middleware/response_writer.go index aedce47ca89..9c3ea23e72a 100644 --- a/internal/api/middleware/response_writer.go +++ b/internal/api/middleware/response_writer.go @@ -9,9 +9,9 @@ import ( "strings" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" log "github.com/sirupsen/logrus" ) diff --git a/internal/api/middleware/response_writer_test.go b/internal/api/middleware/response_writer_test.go index fa0bd548541..70848838e4a 100644 --- a/internal/api/middleware/response_writer_test.go +++ b/internal/api/middleware/response_writer_test.go @@ -6,9 +6,9 @@ import ( "testing" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" ) func TestExtractRequestBodyPrefersOverride(t *testing.T) { diff --git a/internal/api/redis_queue_protocol.go b/internal/api/redis_queue_protocol.go index 4295cc75231..579782f36a5 100644 --- a/internal/api/redis_queue_protocol.go +++ b/internal/api/redis_queue_protocol.go @@ -10,7 +10,7 @@ import ( "strconv" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/redisqueue" + "github.com/awsl-project/CLIProxyAPI/v7/internal/redisqueue" log "github.com/sirupsen/logrus" ) diff --git a/internal/api/redis_queue_protocol_integration_test.go b/internal/api/redis_queue_protocol_integration_test.go index 7904ca72809..5869afcb723 100644 --- a/internal/api/redis_queue_protocol_integration_test.go +++ b/internal/api/redis_queue_protocol_integration_test.go @@ -12,7 +12,7 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/redisqueue" + "github.com/awsl-project/CLIProxyAPI/v7/internal/redisqueue" ) func startRedisMuxListener(t *testing.T, server *Server) (addr string, stop func()) { diff --git a/internal/api/server.go b/internal/api/server.go index 5893bc0dc15..a7ebcb5c952 100644 --- a/internal/api/server.go +++ b/internal/api/server.go @@ -23,29 +23,29 @@ import ( "sync/atomic" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/access" + managementHandlers "github.com/awsl-project/CLIProxyAPI/v7/internal/api/handlers/management" + "github.com/awsl-project/CLIProxyAPI/v7/internal/api/middleware" + "github.com/awsl-project/CLIProxyAPI/v7/internal/cache" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/home" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/internal/managementasset" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginhost" + "github.com/awsl-project/CLIProxyAPI/v7/internal/redisqueue" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + "github.com/awsl-project/CLIProxyAPI/v7/internal/safemode" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + sdkaccess "github.com/awsl-project/CLIProxyAPI/v7/sdk/access" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers/claude" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers/gemini" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers/openai" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/access" - managementHandlers "github.com/router-for-me/CLIProxyAPI/v7/internal/api/handlers/management" - "github.com/router-for-me/CLIProxyAPI/v7/internal/api/middleware" - "github.com/router-for-me/CLIProxyAPI/v7/internal/cache" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/home" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v7/internal/managementasset" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginhost" - "github.com/router-for-me/CLIProxyAPI/v7/internal/redisqueue" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - "github.com/router-for-me/CLIProxyAPI/v7/internal/safemode" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v7/sdk/access" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers/claude" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers/gemini" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers/openai" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" log "github.com/sirupsen/logrus" "golang.org/x/net/http2" "gopkg.in/yaml.v3" diff --git a/internal/api/server_test.go b/internal/api/server_test.go index bb796c2b6cc..9133da6f82f 100644 --- a/internal/api/server_test.go +++ b/internal/api/server_test.go @@ -12,17 +12,17 @@ import ( "testing" "time" + managementHandlers "github.com/awsl-project/CLIProxyAPI/v7/internal/api/handlers/management" + proxyconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + internallogging "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginhost" + "github.com/awsl-project/CLIProxyAPI/v7/internal/redisqueue" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + sdkaccess "github.com/awsl-project/CLIProxyAPI/v7/sdk/access" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" gin "github.com/gin-gonic/gin" - managementHandlers "github.com/router-for-me/CLIProxyAPI/v7/internal/api/handlers/management" - proxyconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - internallogging "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginhost" - "github.com/router-for-me/CLIProxyAPI/v7/internal/redisqueue" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v7/sdk/access" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" ) type codexSearchCaptureExecutor struct { diff --git a/internal/auth/antigravity/auth.go b/internal/auth/antigravity/auth.go index 489d796f1fe..4a233d203e4 100644 --- a/internal/auth/antigravity/auth.go +++ b/internal/auth/antigravity/auth.go @@ -11,9 +11,9 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/internal/auth/claude/anthropic_auth.go b/internal/auth/claude/anthropic_auth.go index d7ca154296b..fdb7ea0de29 100644 --- a/internal/auth/claude/anthropic_auth.go +++ b/internal/auth/claude/anthropic_auth.go @@ -15,7 +15,7 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" log "github.com/sirupsen/logrus" "golang.org/x/sync/singleflight" ) diff --git a/internal/auth/claude/anthropic_auth_proxy_test.go b/internal/auth/claude/anthropic_auth_proxy_test.go index 7cab9cd2f1f..193bb349f25 100644 --- a/internal/auth/claude/anthropic_auth_proxy_test.go +++ b/internal/auth/claude/anthropic_auth_proxy_test.go @@ -3,7 +3,7 @@ package claude import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "golang.org/x/net/proxy" ) diff --git a/internal/auth/claude/token.go b/internal/auth/claude/token.go index 10aa3b43440..dc00ff3783e 100644 --- a/internal/auth/claude/token.go +++ b/internal/auth/claude/token.go @@ -9,7 +9,7 @@ import ( "os" "path/filepath" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" ) // ClaudeTokenStorage stores OAuth2 token information for Anthropic Claude API authentication. diff --git a/internal/auth/claude/utls_transport.go b/internal/auth/claude/utls_transport.go index bb82e7ddecd..ec88c88d745 100644 --- a/internal/auth/claude/utls_transport.go +++ b/internal/auth/claude/utls_transport.go @@ -7,9 +7,9 @@ import ( "strings" "sync" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/proxyutil" tls "github.com/refraction-networking/utls" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/proxyutil" log "github.com/sirupsen/logrus" "golang.org/x/net/http2" "golang.org/x/net/proxy" diff --git a/internal/auth/codex/openai_auth.go b/internal/auth/codex/openai_auth.go index 040703c299b..d3e37025a68 100644 --- a/internal/auth/codex/openai_auth.go +++ b/internal/auth/codex/openai_auth.go @@ -14,8 +14,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" log "github.com/sirupsen/logrus" "golang.org/x/sync/singleflight" ) diff --git a/internal/auth/codex/openai_auth_test.go b/internal/auth/codex/openai_auth_test.go index 20a02fd7ee6..4c98257b1dc 100644 --- a/internal/auth/codex/openai_auth_test.go +++ b/internal/auth/codex/openai_auth_test.go @@ -10,7 +10,7 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "golang.org/x/sync/singleflight" ) diff --git a/internal/auth/codex/token.go b/internal/auth/codex/token.go index b2a7bcf21ac..58e4ba1b19a 100644 --- a/internal/auth/codex/token.go +++ b/internal/auth/codex/token.go @@ -9,7 +9,7 @@ import ( "os" "path/filepath" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" ) // CodexTokenStorage stores OAuth2 token information for OpenAI Codex API authentication. diff --git a/internal/auth/kimi/kimi.go b/internal/auth/kimi/kimi.go index 8c9b864eee1..e50fab9864d 100644 --- a/internal/auth/kimi/kimi.go +++ b/internal/auth/kimi/kimi.go @@ -14,9 +14,9 @@ import ( "strings" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" log "github.com/sirupsen/logrus" "golang.org/x/sync/singleflight" ) diff --git a/internal/auth/kimi/kimi_proxy_test.go b/internal/auth/kimi/kimi_proxy_test.go index a95ba01dba0..ea905720a46 100644 --- a/internal/auth/kimi/kimi_proxy_test.go +++ b/internal/auth/kimi/kimi_proxy_test.go @@ -4,7 +4,7 @@ import ( "net/http" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" ) func TestNewDeviceFlowClientWithDeviceIDAndProxyURL_OverrideDirectDisablesProxy(t *testing.T) { diff --git a/internal/auth/kimi/token.go b/internal/auth/kimi/token.go index 347b546cbda..e6327da4dbd 100644 --- a/internal/auth/kimi/token.go +++ b/internal/auth/kimi/token.go @@ -10,7 +10,7 @@ import ( "path/filepath" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" ) // KimiTokenStorage stores OAuth2 token information for Kimi API authentication. diff --git a/internal/auth/vertex/vertex_credentials.go b/internal/auth/vertex/vertex_credentials.go index db214bd6e28..b02471f84c9 100644 --- a/internal/auth/vertex/vertex_credentials.go +++ b/internal/auth/vertex/vertex_credentials.go @@ -8,7 +8,7 @@ import ( "os" "path/filepath" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" log "github.com/sirupsen/logrus" ) diff --git a/internal/auth/xai/token.go b/internal/auth/xai/token.go index 183d0f3790e..d3fcef5ce98 100644 --- a/internal/auth/xai/token.go +++ b/internal/auth/xai/token.go @@ -8,7 +8,7 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" log "github.com/sirupsen/logrus" ) diff --git a/internal/auth/xai/xai.go b/internal/auth/xai/xai.go index 65d988c311c..829f484fb21 100644 --- a/internal/auth/xai/xai.go +++ b/internal/auth/xai/xai.go @@ -11,8 +11,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" log "github.com/sirupsen/logrus" "golang.org/x/sync/singleflight" ) diff --git a/internal/cache/antigravity_reasoning_replay_cache.go b/internal/cache/antigravity_reasoning_replay_cache.go index a9f58c28d38..0e8d267c50e 100644 --- a/internal/cache/antigravity_reasoning_replay_cache.go +++ b/internal/cache/antigravity_reasoning_replay_cache.go @@ -8,7 +8,7 @@ import ( "sync" "time" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/cache/codex_reasoning_replay_cache.go b/internal/cache/codex_reasoning_replay_cache.go index 274d131b8ac..a71f84f6f84 100644 --- a/internal/cache/codex_reasoning_replay_cache.go +++ b/internal/cache/codex_reasoning_replay_cache.go @@ -8,8 +8,8 @@ import ( "sync" "time" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" - "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" + "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/cache/codex_reasoning_replay_cache_test.go b/internal/cache/codex_reasoning_replay_cache_test.go index 8bfe494f8ce..0246929daef 100644 --- a/internal/cache/codex_reasoning_replay_cache_test.go +++ b/internal/cache/codex_reasoning_replay_cache_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" ) type fakeCodexReasoningReplayKVClient struct { diff --git a/internal/cache/signature_cache.go b/internal/cache/signature_cache.go index 75201db2ace..d1f5cc4ae69 100644 --- a/internal/cache/signature_cache.go +++ b/internal/cache/signature_cache.go @@ -10,7 +10,7 @@ import ( "sync/atomic" "time" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" log "github.com/sirupsen/logrus" ) diff --git a/internal/cache/signature_cache_test.go b/internal/cache/signature_cache_test.go index 5fe5b9e0e58..0925e9b0b31 100644 --- a/internal/cache/signature_cache_test.go +++ b/internal/cache/signature_cache_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" log "github.com/sirupsen/logrus" ) diff --git a/internal/cache/xai_reasoning_replay_cache.go b/internal/cache/xai_reasoning_replay_cache.go index 156bbd4f777..6bb782d4a4f 100644 --- a/internal/cache/xai_reasoning_replay_cache.go +++ b/internal/cache/xai_reasoning_replay_cache.go @@ -8,8 +8,8 @@ import ( "sync" "time" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" - "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" + "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/cache/xai_reasoning_replay_cache_test.go b/internal/cache/xai_reasoning_replay_cache_test.go index 2945c1c9332..9ab35cb7518 100644 --- a/internal/cache/xai_reasoning_replay_cache_test.go +++ b/internal/cache/xai_reasoning_replay_cache_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" "github.com/tidwall/gjson" ) diff --git a/internal/cmd/anthropic_login.go b/internal/cmd/anthropic_login.go index cc1bfc8e7ce..5543f4a11c6 100644 --- a/internal/cmd/anthropic_login.go +++ b/internal/cmd/anthropic_login.go @@ -6,9 +6,9 @@ import ( "fmt" "os" - "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/claude" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/claude" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/internal/cmd/antigravity_login.go b/internal/cmd/antigravity_login.go index f2bd5505a24..321a5d5059b 100644 --- a/internal/cmd/antigravity_login.go +++ b/internal/cmd/antigravity_login.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/internal/cmd/auth_manager.go b/internal/cmd/auth_manager.go index 8d19be1ceff..768808d58b3 100644 --- a/internal/cmd/auth_manager.go +++ b/internal/cmd/auth_manager.go @@ -1,7 +1,7 @@ package cmd import ( - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" ) // newAuthManager creates a new authentication manager instance with all supported diff --git a/internal/cmd/kimi_login.go b/internal/cmd/kimi_login.go index ffc470fda0c..8f3d44b046c 100644 --- a/internal/cmd/kimi_login.go +++ b/internal/cmd/kimi_login.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/internal/cmd/openai_device_login.go b/internal/cmd/openai_device_login.go index 3fa9307b9c4..33789ce300a 100644 --- a/internal/cmd/openai_device_login.go +++ b/internal/cmd/openai_device_login.go @@ -6,9 +6,9 @@ import ( "fmt" "os" - "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/codex" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/internal/cmd/openai_login.go b/internal/cmd/openai_login.go index ee8a0250672..79e259a6136 100644 --- a/internal/cmd/openai_login.go +++ b/internal/cmd/openai_login.go @@ -6,9 +6,9 @@ import ( "fmt" "os" - "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/codex" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/internal/cmd/run.go b/internal/cmd/run.go index bd690975b1b..1152d356d0f 100644 --- a/internal/cmd/run.go +++ b/internal/cmd/run.go @@ -10,10 +10,10 @@ import ( "syscall" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/api" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginhost" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy" + "github.com/awsl-project/CLIProxyAPI/v7/internal/api" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginhost" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy" log "github.com/sirupsen/logrus" ) diff --git a/internal/cmd/vertex_import.go b/internal/cmd/vertex_import.go index ffb6200b1ae..c96def707a2 100644 --- a/internal/cmd/vertex_import.go +++ b/internal/cmd/vertex_import.go @@ -9,11 +9,11 @@ import ( "os" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/vertex" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/vertex" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/internal/cmd/xai_login.go b/internal/cmd/xai_login.go index 88d9d7ffc18..7b5f5b6eecf 100644 --- a/internal/cmd/xai_login.go +++ b/internal/cmd/xai_login.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" log "github.com/sirupsen/logrus" ) diff --git a/internal/config/clone_test.go b/internal/config/clone_test.go index 1ee33035f58..76a1ad4cf58 100644 --- a/internal/config/clone_test.go +++ b/internal/config/clone_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" "gopkg.in/yaml.v3" ) diff --git a/internal/config/config.go b/internal/config/config.go index a7a45c9fbcb..b68dd876c87 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -13,8 +13,8 @@ import ( "strings" "syscall" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - sdkpluginstore "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginstore" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + sdkpluginstore "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginstore" log "github.com/sirupsen/logrus" "golang.org/x/crypto/bcrypt" "gopkg.in/yaml.v3" diff --git a/internal/home/certificate.go b/internal/home/certificate.go index 57c56cca955..2dd1fa282d6 100644 --- a/internal/home/certificate.go +++ b/internal/home/certificate.go @@ -22,7 +22,7 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" ) const homeCertificateRequestTimeout = 30 * time.Second diff --git a/internal/home/client.go b/internal/home/client.go index 83c0c44eaf8..8db8c41431c 100644 --- a/internal/home/client.go +++ b/internal/home/client.go @@ -18,8 +18,8 @@ import ( "sync/atomic" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "github.com/redis/go-redis/v9" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" log "github.com/sirupsen/logrus" ) diff --git a/internal/home/client_test.go b/internal/home/client_test.go index 8a5845d079e..8ce1c52bfe1 100644 --- a/internal/home/client_test.go +++ b/internal/home/client_test.go @@ -17,8 +17,8 @@ import ( "testing" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "github.com/redis/go-redis/v9" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" ) func TestAuthDispatchRequestIncludesCount(t *testing.T) { diff --git a/internal/home/kv_helpers_test.go b/internal/home/kv_helpers_test.go index 012d377affc..45049247ecb 100644 --- a/internal/home/kv_helpers_test.go +++ b/internal/home/kv_helpers_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" log "github.com/sirupsen/logrus" ) diff --git a/internal/home/plugin_status.go b/internal/home/plugin_status.go index 71c01a5cae5..68032f4b4c9 100644 --- a/internal/home/plugin_status.go +++ b/internal/home/plugin_status.go @@ -7,7 +7,7 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/homeplugins" + "github.com/awsl-project/CLIProxyAPI/v7/internal/homeplugins" ) const pluginStatusReportTimeout = 10 * time.Second diff --git a/internal/home/plugin_status_test.go b/internal/home/plugin_status_test.go index a71333fd230..e7499a11b9e 100644 --- a/internal/home/plugin_status_test.go +++ b/internal/home/plugin_status_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/homeplugins" + "github.com/awsl-project/CLIProxyAPI/v7/internal/homeplugins" ) type recordingPluginStatusClient struct { diff --git a/internal/homeplugins/sync.go b/internal/homeplugins/sync.go index 9fd2109380f..5efa558a243 100644 --- a/internal/homeplugins/sync.go +++ b/internal/homeplugins/sync.go @@ -12,10 +12,10 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" - sdkpluginstore "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginstore" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" + sdkpluginstore "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginstore" "gopkg.in/yaml.v3" ) diff --git a/internal/homeplugins/sync_test.go b/internal/homeplugins/sync_test.go index 5421cb6a0b8..dfa12c51ff1 100644 --- a/internal/homeplugins/sync_test.go +++ b/internal/homeplugins/sync_test.go @@ -14,8 +14,8 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - sdkpluginstore "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginstore" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + sdkpluginstore "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginstore" "gopkg.in/yaml.v3" ) diff --git a/internal/interfaces/types.go b/internal/interfaces/types.go index dfdfc02a84a..e6b6dd4ba09 100644 --- a/internal/interfaces/types.go +++ b/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/v7/sdk/translator" +import sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" // Backwards compatible aliases for translator function types. type TranslateRequestFunc = sdktranslator.RequestTransform diff --git a/internal/logging/gin_logger.go b/internal/logging/gin_logger.go index 446c97fb008..3b077898fe5 100644 --- a/internal/logging/gin_logger.go +++ b/internal/logging/gin_logger.go @@ -11,8 +11,8 @@ import ( "strings" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" log "github.com/sirupsen/logrus" ) diff --git a/internal/logging/global_logger.go b/internal/logging/global_logger.go index 9d6fffcb373..07f846c6d70 100644 --- a/internal/logging/global_logger.go +++ b/internal/logging/global_logger.go @@ -9,9 +9,9 @@ import ( "strings" "sync" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" log "github.com/sirupsen/logrus" "gopkg.in/natefinch/lumberjack.v2" ) diff --git a/internal/logging/home_app_log_forwarder.go b/internal/logging/home_app_log_forwarder.go index e86e660322f..7f360b805fd 100644 --- a/internal/logging/home_app_log_forwarder.go +++ b/internal/logging/home_app_log_forwarder.go @@ -9,7 +9,7 @@ import ( "sync/atomic" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/home" + "github.com/awsl-project/CLIProxyAPI/v7/internal/home" log "github.com/sirupsen/logrus" ) diff --git a/internal/logging/request_logger.go b/internal/logging/request_logger.go index 9a21e7e0212..3b7759cffb0 100644 --- a/internal/logging/request_logger.go +++ b/internal/logging/request_logger.go @@ -25,10 +25,10 @@ import ( "github.com/klauspost/compress/zstd" log "github.com/sirupsen/logrus" - "github.com/router-for-me/CLIProxyAPI/v7/internal/buildinfo" - "github.com/router-for-me/CLIProxyAPI/v7/internal/home" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/buildinfo" + "github.com/awsl-project/CLIProxyAPI/v7/internal/home" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" ) var requestLogID atomic.Uint64 diff --git a/internal/managementasset/updater.go b/internal/managementasset/updater.go index b9f884106c5..61ac3278365 100644 --- a/internal/managementasset/updater.go +++ b/internal/managementasset/updater.go @@ -17,10 +17,10 @@ import ( "sync/atomic" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/httpfetch" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/httpfetch" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" log "github.com/sirupsen/logrus" "golang.org/x/sync/singleflight" ) diff --git a/internal/managementasset/updater_test.go b/internal/managementasset/updater_test.go index 82fdb2912c9..127026ce648 100644 --- a/internal/managementasset/updater_test.go +++ b/internal/managementasset/updater_test.go @@ -3,7 +3,7 @@ package managementasset import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" ) func TestAutoUpdateSkipReason(t *testing.T) { diff --git a/internal/pluginhost/abi.go b/internal/pluginhost/abi.go index a63694faac8..1c4ac5bfd4a 100644 --- a/internal/pluginhost/abi.go +++ b/internal/pluginhost/abi.go @@ -3,7 +3,7 @@ package pluginhost import ( "context" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" ) const pluginHostABIVersion = pluginabi.ABIVersion diff --git a/internal/pluginhost/adapters.go b/internal/pluginhost/adapters.go index 403a8c1f19b..3b37c9c4732 100644 --- a/internal/pluginhost/adapters.go +++ b/internal/pluginhost/adapters.go @@ -13,15 +13,15 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v7/sdk/access" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - coreusage "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/usage" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" - _ "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator/builtin" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + sdkaccess "github.com/awsl-project/CLIProxyAPI/v7/sdk/access" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + coreusage "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/usage" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" + _ "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator/builtin" log "github.com/sirupsen/logrus" ) diff --git a/internal/pluginhost/adapters_test.go b/internal/pluginhost/adapters_test.go index 6817d0a9a73..4b4bb9b06e6 100644 --- a/internal/pluginhost/adapters_test.go +++ b/internal/pluginhost/adapters_test.go @@ -13,14 +13,14 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v7/sdk/access" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - coreusage "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/usage" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + sdkaccess "github.com/awsl-project/CLIProxyAPI/v7/sdk/access" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + coreusage "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/usage" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" ) func TestPluginModelInfoToRegistryModelInfoClonesThinkingAndSlices(t *testing.T) { diff --git a/internal/pluginhost/auth_callbacks.go b/internal/pluginhost/auth_callbacks.go index 3573999af52..f60c5f67f72 100644 --- a/internal/pluginhost/auth_callbacks.go +++ b/internal/pluginhost/auth_callbacks.go @@ -12,8 +12,8 @@ import ( "strings" "time" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) type rpcHostAuthGetRequest struct { diff --git a/internal/pluginhost/auth_callbacks_test.go b/internal/pluginhost/auth_callbacks_test.go index 2a1b325eb6b..83de98205a4 100644 --- a/internal/pluginhost/auth_callbacks_test.go +++ b/internal/pluginhost/auth_callbacks_test.go @@ -9,10 +9,10 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) type memoryAuthStorage struct { diff --git a/internal/pluginhost/auth_provider.go b/internal/pluginhost/auth_provider.go index 68752b408bc..4b442e5e524 100644 --- a/internal/pluginhost/auth_provider.go +++ b/internal/pluginhost/auth_provider.go @@ -12,9 +12,9 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func (h *Host) hostConfigSummaryLocked() pluginapi.HostConfigSummary { diff --git a/internal/pluginhost/auth_provider_test.go b/internal/pluginhost/auth_provider_test.go index ed349541920..4cf028f8136 100644 --- a/internal/pluginhost/auth_provider_test.go +++ b/internal/pluginhost/auth_provider_test.go @@ -8,8 +8,8 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func TestAuthProviderDiscovery(t *testing.T) { diff --git a/internal/pluginhost/command_line.go b/internal/pluginhost/command_line.go index 52311702b41..e0e64ed14c7 100644 --- a/internal/pluginhost/command_line.go +++ b/internal/pluginhost/command_line.go @@ -10,8 +10,8 @@ import ( "strings" "time" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" log "github.com/sirupsen/logrus" ) diff --git a/internal/pluginhost/command_line_test.go b/internal/pluginhost/command_line_test.go index a0d3e25d16c..b9ba57f1859 100644 --- a/internal/pluginhost/command_line_test.go +++ b/internal/pluginhost/command_line_test.go @@ -7,10 +7,10 @@ import ( "path/filepath" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func TestRegisterCommandLineFlagsSkipsNativeAndUsesPriority(t *testing.T) { diff --git a/internal/pluginhost/config.go b/internal/pluginhost/config.go index a004eea9d97..73193715d45 100644 --- a/internal/pluginhost/config.go +++ b/internal/pluginhost/config.go @@ -6,7 +6,7 @@ import ( "strconv" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "gopkg.in/yaml.v3" ) diff --git a/internal/pluginhost/config_test.go b/internal/pluginhost/config_test.go index cc5b9899541..5c14e48540c 100644 --- a/internal/pluginhost/config_test.go +++ b/internal/pluginhost/config_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "gopkg.in/yaml.v3" ) diff --git a/internal/pluginhost/executor_route.go b/internal/pluginhost/executor_route.go index be6138db82b..ee2469e5393 100644 --- a/internal/pluginhost/executor_route.go +++ b/internal/pluginhost/executor_route.go @@ -5,10 +5,10 @@ import ( "fmt" "strings" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" ) // executorPluginReady reports whether the named plugin can actually execute a diff --git a/internal/pluginhost/host.go b/internal/pluginhost/host.go index 301945a0dca..64070db8670 100644 --- a/internal/pluginhost/host.go +++ b/internal/pluginhost/host.go @@ -9,12 +9,12 @@ import ( "sync" "sync/atomic" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" log "github.com/sirupsen/logrus" ) diff --git a/internal/pluginhost/host_callbacks.go b/internal/pluginhost/host_callbacks.go index 53c3bf544a1..ebe9bff34f2 100644 --- a/internal/pluginhost/host_callbacks.go +++ b/internal/pluginhost/host_callbacks.go @@ -6,11 +6,11 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" log "github.com/sirupsen/logrus" ) diff --git a/internal/pluginhost/host_callbacks_test.go b/internal/pluginhost/host_callbacks_test.go index 827b5694f08..51e6ca97ccb 100644 --- a/internal/pluginhost/host_callbacks_test.go +++ b/internal/pluginhost/host_callbacks_test.go @@ -11,13 +11,13 @@ import ( "testing" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" log "github.com/sirupsen/logrus" ) diff --git a/internal/pluginhost/host_model_stream_callbacks.go b/internal/pluginhost/host_model_stream_callbacks.go index be65e5fabb4..bb0f3fdc040 100644 --- a/internal/pluginhost/host_model_stream_callbacks.go +++ b/internal/pluginhost/host_model_stream_callbacks.go @@ -5,7 +5,7 @@ import ( "encoding/json" "fmt" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func (h *Host) callHostModelExecuteStream(ctx context.Context, request []byte) ([]byte, error) { diff --git a/internal/pluginhost/host_model_stream_callbacks_test.go b/internal/pluginhost/host_model_stream_callbacks_test.go index bc8f29283e5..efdb046f99e 100644 --- a/internal/pluginhost/host_model_stream_callbacks_test.go +++ b/internal/pluginhost/host_model_stream_callbacks_test.go @@ -7,10 +7,10 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func TestHostModelExecuteStreamDetachesFromCallbackParentCancel(t *testing.T) { diff --git a/internal/pluginhost/host_test.go b/internal/pluginhost/host_test.go index 483fb84842c..8bb2b1ca709 100644 --- a/internal/pluginhost/host_test.go +++ b/internal/pluginhost/host_test.go @@ -11,10 +11,10 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/internal/pluginhost/http_bridge.go b/internal/pluginhost/http_bridge.go index edd279b13c1..833810fd5d8 100644 --- a/internal/pluginhost/http_bridge.go +++ b/internal/pluginhost/http_bridge.go @@ -7,10 +7,10 @@ import ( "io" "net/http" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" log "github.com/sirupsen/logrus" ) diff --git a/internal/pluginhost/http_stream_bridge.go b/internal/pluginhost/http_stream_bridge.go index 48b0653842d..e148003455b 100644 --- a/internal/pluginhost/http_stream_bridge.go +++ b/internal/pluginhost/http_stream_bridge.go @@ -7,7 +7,7 @@ import ( "sync" "sync/atomic" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) type hostHTTPStreamBridge struct { diff --git a/internal/pluginhost/logging.go b/internal/pluginhost/logging.go index e4c48a6a1cc..36bd898a8dc 100644 --- a/internal/pluginhost/logging.go +++ b/internal/pluginhost/logging.go @@ -3,7 +3,7 @@ package pluginhost import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" log "github.com/sirupsen/logrus" ) diff --git a/internal/pluginhost/logging_test.go b/internal/pluginhost/logging_test.go index e9273db957b..88f59d9252f 100644 --- a/internal/pluginhost/logging_test.go +++ b/internal/pluginhost/logging_test.go @@ -3,7 +3,7 @@ package pluginhost import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func TestPluginLogFieldsIncludesNameVersionAndPath(t *testing.T) { diff --git a/internal/pluginhost/management.go b/internal/pluginhost/management.go index 3857e9bcaa2..a176c4d0914 100644 --- a/internal/pluginhost/management.go +++ b/internal/pluginhost/management.go @@ -8,8 +8,8 @@ import ( "net/http" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/htmlsanitize" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/htmlsanitize" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" log "github.com/sirupsen/logrus" ) diff --git a/internal/pluginhost/management_test.go b/internal/pluginhost/management_test.go index 319add6f06d..1fbcc6c0445 100644 --- a/internal/pluginhost/management_test.go +++ b/internal/pluginhost/management_test.go @@ -8,7 +8,7 @@ import ( "net/http/httptest" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func TestRegisterManagementRoutesSkipsReservedAndUsesPriority(t *testing.T) { diff --git a/internal/pluginhost/model_router.go b/internal/pluginhost/model_router.go index 80d0d61da3c..371f3e97f9b 100644 --- a/internal/pluginhost/model_router.go +++ b/internal/pluginhost/model_router.go @@ -5,7 +5,7 @@ import ( "context" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" log "github.com/sirupsen/logrus" ) diff --git a/internal/pluginhost/model_router_test.go b/internal/pluginhost/model_router_test.go index eacb4cc3132..c54451555b2 100644 --- a/internal/pluginhost/model_router_test.go +++ b/internal/pluginhost/model_router_test.go @@ -6,9 +6,9 @@ import ( "fmt" "testing" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func newRouteModelHostWithRecords(records ...capabilityRecord) *Host { diff --git a/internal/pluginhost/model_stream_bridge.go b/internal/pluginhost/model_stream_bridge.go index 7ee61326bec..4974c93608e 100644 --- a/internal/pluginhost/model_stream_bridge.go +++ b/internal/pluginhost/model_stream_bridge.go @@ -7,7 +7,7 @@ import ( "sync" "sync/atomic" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" ) type modelStreamBridge struct { diff --git a/internal/pluginhost/rpc_client.go b/internal/pluginhost/rpc_client.go index 10f767a5a89..63ff88bdd17 100644 --- a/internal/pluginhost/rpc_client.go +++ b/internal/pluginhost/rpc_client.go @@ -9,8 +9,8 @@ import ( "net/http" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) type rpcPluginAdapter struct { diff --git a/internal/pluginhost/rpc_client_error_test.go b/internal/pluginhost/rpc_client_error_test.go index a74e6bb7a02..11660b56546 100644 --- a/internal/pluginhost/rpc_client_error_test.go +++ b/internal/pluginhost/rpc_client_error_test.go @@ -6,7 +6,7 @@ import ( "net/http" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" ) type staticEnvelopePluginClient struct { diff --git a/internal/pluginhost/rpc_client_stream.go b/internal/pluginhost/rpc_client_stream.go index 87939146a01..6813c41e1dd 100644 --- a/internal/pluginhost/rpc_client_stream.go +++ b/internal/pluginhost/rpc_client_stream.go @@ -5,8 +5,8 @@ import ( "fmt" "sync" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func (a *rpcPluginAdapter) ExecuteStream(ctx context.Context, req pluginapi.ExecutorRequest) (pluginapi.ExecutorStreamResponse, error) { diff --git a/internal/pluginhost/rpc_client_stream_test.go b/internal/pluginhost/rpc_client_stream_test.go index 6e293a248a2..7b80aa8e287 100644 --- a/internal/pluginhost/rpc_client_stream_test.go +++ b/internal/pluginhost/rpc_client_stream_test.go @@ -8,8 +8,8 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func TestRPCExecuteStreamKeepsHostCallbackScopeUntilStreamCloses(t *testing.T) { diff --git a/internal/pluginhost/rpc_schema.go b/internal/pluginhost/rpc_schema.go index b88711009ab..544b9b83be8 100644 --- a/internal/pluginhost/rpc_schema.go +++ b/internal/pluginhost/rpc_schema.go @@ -4,7 +4,7 @@ import ( "encoding/json" "net/http" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) type rpcLifecycleRequest struct { diff --git a/internal/pluginhost/rpc_schema_test.go b/internal/pluginhost/rpc_schema_test.go index 1746b66a880..784b4d11be6 100644 --- a/internal/pluginhost/rpc_schema_test.go +++ b/internal/pluginhost/rpc_schema_test.go @@ -7,8 +7,8 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func TestRPCCapabilitiesIncludeFrontendAuthProviderExclusive(t *testing.T) { diff --git a/internal/pluginhost/scheduler.go b/internal/pluginhost/scheduler.go index a5d44240ffb..2f212d9823c 100644 --- a/internal/pluginhost/scheduler.go +++ b/internal/pluginhost/scheduler.go @@ -4,7 +4,7 @@ import ( "context" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" log "github.com/sirupsen/logrus" ) diff --git a/internal/pluginhost/scheduler_test.go b/internal/pluginhost/scheduler_test.go index 374b884f34e..0110f084a30 100644 --- a/internal/pluginhost/scheduler_test.go +++ b/internal/pluginhost/scheduler_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func TestHostPickAuthUsesHighestPrioritySchedulerOnly(t *testing.T) { diff --git a/internal/pluginhost/snapshot.go b/internal/pluginhost/snapshot.go index 4a15f516603..5afe2f26f6a 100644 --- a/internal/pluginhost/snapshot.go +++ b/internal/pluginhost/snapshot.go @@ -4,7 +4,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) type capabilityRecord struct { diff --git a/internal/pluginhost/stream_bridge.go b/internal/pluginhost/stream_bridge.go index 632cc2bc261..3808733b644 100644 --- a/internal/pluginhost/stream_bridge.go +++ b/internal/pluginhost/stream_bridge.go @@ -7,7 +7,7 @@ import ( "sync" "sync/atomic" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) type streamBridge struct { diff --git a/internal/pluginhost/test_helpers_test.go b/internal/pluginhost/test_helpers_test.go index c3deb906f18..f4aa9bb3b95 100644 --- a/internal/pluginhost/test_helpers_test.go +++ b/internal/pluginhost/test_helpers_test.go @@ -9,9 +9,9 @@ import ( "runtime" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginabi" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginabi" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" "gopkg.in/yaml.v3" ) diff --git a/internal/pluginstore/github.go b/internal/pluginstore/github.go index 2db6299edd0..4d03b3e6887 100644 --- a/internal/pluginstore/github.go +++ b/internal/pluginstore/github.go @@ -9,7 +9,7 @@ import ( "net/url" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/httpfetch" + "github.com/awsl-project/CLIProxyAPI/v7/internal/httpfetch" log "github.com/sirupsen/logrus" ) diff --git a/internal/redisqueue/plugin.go b/internal/redisqueue/plugin.go index 1ade177e939..1627776a8bb 100644 --- a/internal/redisqueue/plugin.go +++ b/internal/redisqueue/plugin.go @@ -7,8 +7,8 @@ import ( "strings" "time" - internallogging "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - coreusage "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/usage" + internallogging "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + coreusage "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/usage" ) func init() { diff --git a/internal/redisqueue/plugin_test.go b/internal/redisqueue/plugin_test.go index 8735c552a52..8a09ba53c5b 100644 --- a/internal/redisqueue/plugin_test.go +++ b/internal/redisqueue/plugin_test.go @@ -8,9 +8,9 @@ import ( "testing" "time" + internallogging "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + coreusage "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/usage" "github.com/gin-gonic/gin" - internallogging "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - coreusage "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/usage" ) func TestUsageQueuePluginPayloadIncludesStableFieldsAndSuccess(t *testing.T) { diff --git a/internal/registry/model_registry.go b/internal/registry/model_registry.go index 1bc2715dada..578dd5d2bf7 100644 --- a/internal/registry/model_registry.go +++ b/internal/registry/model_registry.go @@ -11,7 +11,7 @@ import ( "sync" "time" - misc "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" + misc "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" log "github.com/sirupsen/logrus" ) diff --git a/internal/runtime/executor/aistudio_executor.go b/internal/runtime/executor/aistudio_executor.go index ab5889352f8..e1bf1adf426 100644 --- a/internal/runtime/executor/aistudio_executor.go +++ b/internal/runtime/executor/aistudio_executor.go @@ -13,14 +13,14 @@ import ( "net/url" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - "github.com/router-for-me/CLIProxyAPI/v7/internal/wsrelay" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/wsrelay" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/runtime/executor/aistudio_executor_test.go b/internal/runtime/executor/aistudio_executor_test.go index 52ce6147a86..cdc700d229b 100644 --- a/internal/runtime/executor/aistudio_executor_test.go +++ b/internal/runtime/executor/aistudio_executor_test.go @@ -10,13 +10,13 @@ import ( "testing" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/wsrelay" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/usage" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/gorilla/websocket" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/wsrelay" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/usage" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" ) func TestAIStudioExecutorExecuteStartsTTFTBeforeRelayWait(t *testing.T) { diff --git a/internal/runtime/executor/antigravity_executor.go b/internal/runtime/executor/antigravity_executor.go index 0f0ca05e805..f0b7baaeb70 100644 --- a/internal/runtime/executor/antigravity_executor.go +++ b/internal/runtime/executor/antigravity_executor.go @@ -22,20 +22,20 @@ import ( "sync" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/cache" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + antigravityclaude "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/antigravity/claude" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v7/internal/cache" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - antigravityclaude "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/antigravity/claude" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/runtime/executor/antigravity_executor_buildrequest_test.go b/internal/runtime/executor/antigravity_executor_buildrequest_test.go index b5329d7894d..be52e5c3b02 100644 --- a/internal/runtime/executor/antigravity_executor_buildrequest_test.go +++ b/internal/runtime/executor/antigravity_executor_buildrequest_test.go @@ -9,8 +9,8 @@ import ( "testing" "time" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" ) func TestAntigravityBuildRequest_SanitizesGeminiToolSchema(t *testing.T) { diff --git a/internal/runtime/executor/antigravity_executor_credits_test.go b/internal/runtime/executor/antigravity_executor_credits_test.go index e516483d999..24776a617cb 100644 --- a/internal/runtime/executor/antigravity_executor_credits_test.go +++ b/internal/runtime/executor/antigravity_executor_credits_test.go @@ -12,12 +12,12 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" ) func resetAntigravityCreditsRetryState() { diff --git a/internal/runtime/executor/antigravity_executor_interactions_test.go b/internal/runtime/executor/antigravity_executor_interactions_test.go index 4e3dd9cc43b..1a2ecb49c4e 100644 --- a/internal/runtime/executor/antigravity_executor_interactions_test.go +++ b/internal/runtime/executor/antigravity_executor_interactions_test.go @@ -8,11 +8,11 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/internal/runtime/executor/antigravity_executor_signature_test.go b/internal/runtime/executor/antigravity_executor_signature_test.go index c35190e4541..6e67a21eedc 100644 --- a/internal/runtime/executor/antigravity_executor_signature_test.go +++ b/internal/runtime/executor/antigravity_executor_signature_test.go @@ -9,9 +9,9 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/cache" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/cache" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" log "github.com/sirupsen/logrus" "github.com/sirupsen/logrus/hooks/test" "github.com/tidwall/gjson" diff --git a/internal/runtime/executor/antigravity_reasoning_replay.go b/internal/runtime/executor/antigravity_reasoning_replay.go index 8276eadbd84..7649edeba7d 100644 --- a/internal/runtime/executor/antigravity_reasoning_replay.go +++ b/internal/runtime/executor/antigravity_reasoning_replay.go @@ -8,9 +8,9 @@ import ( "net/http" "strings" - internalcache "github.com/router-for-me/CLIProxyAPI/v7/internal/cache" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + internalcache "github.com/awsl-project/CLIProxyAPI/v7/internal/cache" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/runtime/executor/antigravity_reasoning_replay_clear_test.go b/internal/runtime/executor/antigravity_reasoning_replay_clear_test.go index a15f15ece92..3f401cf9244 100644 --- a/internal/runtime/executor/antigravity_reasoning_replay_clear_test.go +++ b/internal/runtime/executor/antigravity_reasoning_replay_clear_test.go @@ -8,11 +8,11 @@ import ( "testing" "time" - internalcache "github.com/router-for-me/CLIProxyAPI/v7/internal/cache" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + internalcache "github.com/awsl-project/CLIProxyAPI/v7/internal/cache" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" ) func TestAntigravityReasoningReplayClearsOnInvalidSignature400(t *testing.T) { diff --git a/internal/runtime/executor/antigravity_reasoning_replay_test.go b/internal/runtime/executor/antigravity_reasoning_replay_test.go index 98f39d416a1..34bc11433a1 100644 --- a/internal/runtime/executor/antigravity_reasoning_replay_test.go +++ b/internal/runtime/executor/antigravity_reasoning_replay_test.go @@ -5,8 +5,8 @@ import ( "strings" "testing" - internalcache "github.com/router-for-me/CLIProxyAPI/v7/internal/cache" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + internalcache "github.com/awsl-project/CLIProxyAPI/v7/internal/cache" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" "github.com/tidwall/gjson" ) diff --git a/internal/runtime/executor/antigravity_refresh_test.go b/internal/runtime/executor/antigravity_refresh_test.go index 7966821ec6d..79590e2e4be 100644 --- a/internal/runtime/executor/antigravity_refresh_test.go +++ b/internal/runtime/executor/antigravity_refresh_test.go @@ -14,7 +14,7 @@ import ( "testing" "time" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "golang.org/x/sync/singleflight" ) diff --git a/internal/runtime/executor/claude_executor.go b/internal/runtime/executor/claude_executor.go index b3e348abb5d..e416b054634 100644 --- a/internal/runtime/executor/claude_executor.go +++ b/internal/runtime/executor/claude_executor.go @@ -15,19 +15,19 @@ import ( "time" "github.com/andybalholm/brotli" + claudeauth "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/claude" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + sigcompat "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/google/uuid" "github.com/klauspost/compress/zstd" - claudeauth "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/claude" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - sigcompat "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/runtime/executor/claude_executor_test.go b/internal/runtime/executor/claude_executor_test.go index 1325edcae4e..ef428e26c40 100644 --- a/internal/runtime/executor/claude_executor_test.go +++ b/internal/runtime/executor/claude_executor_test.go @@ -15,15 +15,15 @@ import ( "testing" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/gin-gonic/gin" "github.com/klauspost/compress/zstd" xxHash64 "github.com/pierrec/xxHash/xxHash64" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/runtime/executor/claude_signing.go b/internal/runtime/executor/claude_signing.go index 8afd57a6756..7f610e7ef91 100644 --- a/internal/runtime/executor/claude_signing.go +++ b/internal/runtime/executor/claude_signing.go @@ -5,9 +5,9 @@ import ( "regexp" "strings" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" xxHash64 "github.com/pierrec/xxHash/xxHash64" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/runtime/executor/codex_executor.go b/internal/runtime/executor/codex_executor.go index d9ac0c2d0f6..c853bd74fad 100644 --- a/internal/runtime/executor/codex_executor.go +++ b/internal/runtime/executor/codex_executor.go @@ -13,18 +13,18 @@ import ( "strings" "time" - codexauth "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/codex" - internalcache "github.com/router-for-me/CLIProxyAPI/v7/internal/cache" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + codexauth "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/codex" + internalcache "github.com/awsl-project/CLIProxyAPI/v7/internal/cache" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/runtime/executor/codex_executor_cache_test.go b/internal/runtime/executor/codex_executor_cache_test.go index 8e28340f4d5..ab57f4d1395 100644 --- a/internal/runtime/executor/codex_executor_cache_test.go +++ b/internal/runtime/executor/codex_executor_cache_test.go @@ -7,13 +7,13 @@ import ( "net/http/httptest" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/gin-gonic/gin" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/internal/runtime/executor/codex_executor_compact_test.go b/internal/runtime/executor/codex_executor_compact_test.go index 1d92987068a..e33aa4d9a80 100644 --- a/internal/runtime/executor/codex_executor_compact_test.go +++ b/internal/runtime/executor/codex_executor_compact_test.go @@ -7,10 +7,10 @@ import ( "net/http/httptest" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/internal/runtime/executor/codex_executor_imagegen_test.go b/internal/runtime/executor/codex_executor_imagegen_test.go index dfb50584c96..fe1cd58cad8 100644 --- a/internal/runtime/executor/codex_executor_imagegen_test.go +++ b/internal/runtime/executor/codex_executor_imagegen_test.go @@ -7,10 +7,10 @@ import ( "net/http/httptest" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/internal/runtime/executor/codex_executor_instructions_test.go b/internal/runtime/executor/codex_executor_instructions_test.go index b3c8ac18ac4..ebc4e17b03d 100644 --- a/internal/runtime/executor/codex_executor_instructions_test.go +++ b/internal/runtime/executor/codex_executor_instructions_test.go @@ -7,10 +7,10 @@ import ( "net/http/httptest" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/internal/runtime/executor/codex_executor_reasoning_replay_cache_test.go b/internal/runtime/executor/codex_executor_reasoning_replay_cache_test.go index 8c94b146b37..611512a1b5a 100644 --- a/internal/runtime/executor/codex_executor_reasoning_replay_cache_test.go +++ b/internal/runtime/executor/codex_executor_reasoning_replay_cache_test.go @@ -11,13 +11,13 @@ import ( "strings" "testing" + internalcache "github.com/awsl-project/CLIProxyAPI/v7/internal/cache" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/gin-gonic/gin" - internalcache "github.com/router-for-me/CLIProxyAPI/v7/internal/cache" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/internal/runtime/executor/codex_executor_signature_test.go b/internal/runtime/executor/codex_executor_signature_test.go index 4b69984a2e1..1f6a98d7ae8 100644 --- a/internal/runtime/executor/codex_executor_signature_test.go +++ b/internal/runtime/executor/codex_executor_signature_test.go @@ -8,10 +8,10 @@ import ( "net/http/httptest" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/internal/runtime/executor/codex_executor_stream_output_test.go b/internal/runtime/executor/codex_executor_stream_output_test.go index f495d3c1ebe..4da70a759d0 100644 --- a/internal/runtime/executor/codex_executor_stream_output_test.go +++ b/internal/runtime/executor/codex_executor_stream_output_test.go @@ -9,11 +9,11 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/internal/runtime/executor/codex_executor_translate_test.go b/internal/runtime/executor/codex_executor_translate_test.go index 5b28f9e7929..f9b0a70622d 100644 --- a/internal/runtime/executor/codex_executor_translate_test.go +++ b/internal/runtime/executor/codex_executor_translate_test.go @@ -5,7 +5,7 @@ import ( "sync/atomic" "testing" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" ) func TestTranslateCodexRequestPairReusesEqualPayload(t *testing.T) { diff --git a/internal/runtime/executor/codex_openai_images.go b/internal/runtime/executor/codex_openai_images.go index 10019f0cdc4..843ddaf4320 100644 --- a/internal/runtime/executor/codex_openai_images.go +++ b/internal/runtime/executor/codex_openai_images.go @@ -16,12 +16,12 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/runtime/executor/codex_openai_images_test.go b/internal/runtime/executor/codex_openai_images_test.go index 6bc5b63890d..56aa0b8b03d 100644 --- a/internal/runtime/executor/codex_openai_images_test.go +++ b/internal/runtime/executor/codex_openai_images_test.go @@ -11,10 +11,10 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/internal/runtime/executor/codex_websockets_executor.go b/internal/runtime/executor/codex_websockets_executor.go index 0c81235cfbd..c78e7ac2db8 100644 --- a/internal/runtime/executor/codex_websockets_executor.go +++ b/internal/runtime/executor/codex_websockets_executor.go @@ -16,18 +16,18 @@ import ( "sync" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/proxyutil" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/gin-gonic/gin" "github.com/google/uuid" "github.com/gorilla/websocket" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/proxyutil" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/runtime/executor/codex_websockets_executor_store_test.go b/internal/runtime/executor/codex_websockets_executor_store_test.go index 115ed066d2c..4e95d8d7d66 100644 --- a/internal/runtime/executor/codex_websockets_executor_store_test.go +++ b/internal/runtime/executor/codex_websockets_executor_store_test.go @@ -3,7 +3,7 @@ package executor import ( "testing" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) func TestCodexWebsocketsExecutor_SessionStoreSurvivesExecutorReplacement(t *testing.T) { diff --git a/internal/runtime/executor/codex_websockets_executor_test.go b/internal/runtime/executor/codex_websockets_executor_test.go index 753259a5603..273a0e1f772 100644 --- a/internal/runtime/executor/codex_websockets_executor_test.go +++ b/internal/runtime/executor/codex_websockets_executor_test.go @@ -10,14 +10,14 @@ import ( "testing" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/gin-gonic/gin" "github.com/gorilla/websocket" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/internal/runtime/executor/gemini_executor.go b/internal/runtime/executor/gemini_executor.go index 0607de86303..4d7e7727a0a 100644 --- a/internal/runtime/executor/gemini_executor.go +++ b/internal/runtime/executor/gemini_executor.go @@ -12,14 +12,14 @@ import ( "net/http" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/runtime/executor/gemini_executor_test.go b/internal/runtime/executor/gemini_executor_test.go index 6a22e4e7454..1356add18e7 100644 --- a/internal/runtime/executor/gemini_executor_test.go +++ b/internal/runtime/executor/gemini_executor_test.go @@ -8,11 +8,11 @@ import ( "net/http/httptest" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/internal/runtime/executor/gemini_vertex_executor.go b/internal/runtime/executor/gemini_vertex_executor.go index b0677415ae0..a7ade93d238 100644 --- a/internal/runtime/executor/gemini_vertex_executor.go +++ b/internal/runtime/executor/gemini_vertex_executor.go @@ -14,14 +14,14 @@ import ( "strings" "time" - vertexauth "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/vertex" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + vertexauth "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/vertex" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/runtime/executor/helps/antigravity_grounding_urls.go b/internal/runtime/executor/helps/antigravity_grounding_urls.go index 1c4233d204e..7fd78c19fdf 100644 --- a/internal/runtime/executor/helps/antigravity_grounding_urls.go +++ b/internal/runtime/executor/helps/antigravity_grounding_urls.go @@ -7,8 +7,8 @@ import ( "net/url" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/runtime/executor/helps/cache_helpers.go b/internal/runtime/executor/helps/cache_helpers.go index b52afe0486f..a50c38ce7f3 100644 --- a/internal/runtime/executor/helps/cache_helpers.go +++ b/internal/runtime/executor/helps/cache_helpers.go @@ -5,7 +5,7 @@ import ( "sync" "time" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" ) type CodexCache struct { diff --git a/internal/runtime/executor/helps/cache_helpers_test.go b/internal/runtime/executor/helps/cache_helpers_test.go index 3b932818969..f2ae5109ae6 100644 --- a/internal/runtime/executor/helps/cache_helpers_test.go +++ b/internal/runtime/executor/helps/cache_helpers_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" ) func TestSetCodexCacheRequiredHomeUnavailableReturnsError(t *testing.T) { diff --git a/internal/runtime/executor/helps/claude_device_profile.go b/internal/runtime/executor/helps/claude_device_profile.go index 2eb97d98202..1f8b1aacc5f 100644 --- a/internal/runtime/executor/helps/claude_device_profile.go +++ b/internal/runtime/executor/helps/claude_device_profile.go @@ -14,9 +14,9 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) const ( diff --git a/internal/runtime/executor/helps/claude_device_profile_test.go b/internal/runtime/executor/helps/claude_device_profile_test.go index 0f99168d09d..65e3185fd36 100644 --- a/internal/runtime/executor/helps/claude_device_profile_test.go +++ b/internal/runtime/executor/helps/claude_device_profile_test.go @@ -8,9 +8,9 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) type fakeClaudeDeviceProfileKVClient struct { diff --git a/internal/runtime/executor/helps/home_refresh.go b/internal/runtime/executor/helps/home_refresh.go index 7c9719927c3..4fde0070c18 100644 --- a/internal/runtime/executor/helps/home_refresh.go +++ b/internal/runtime/executor/helps/home_refresh.go @@ -7,9 +7,9 @@ import ( "net/http" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/home" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/home" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) type homeStatusErr struct { diff --git a/internal/runtime/executor/helps/home_refresh_test.go b/internal/runtime/executor/helps/home_refresh_test.go index ca7582732f9..fe15de87e18 100644 --- a/internal/runtime/executor/helps/home_refresh_test.go +++ b/internal/runtime/executor/helps/home_refresh_test.go @@ -7,8 +7,8 @@ import ( "sync/atomic" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) func TestStatusFromHomeErrorCodeMapsAuthenticationErrorToUnauthorized(t *testing.T) { diff --git a/internal/runtime/executor/helps/logging_helpers.go b/internal/runtime/executor/helps/logging_helpers.go index 94837d2cf8b..074c15f5e00 100644 --- a/internal/runtime/executor/helps/logging_helpers.go +++ b/internal/runtime/executor/helps/logging_helpers.go @@ -11,10 +11,10 @@ import ( "strings" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/internal/runtime/executor/helps/logging_helpers_test.go b/internal/runtime/executor/helps/logging_helpers_test.go index 17ad24656a7..bbe44af6910 100644 --- a/internal/runtime/executor/helps/logging_helpers_test.go +++ b/internal/runtime/executor/helps/logging_helpers_test.go @@ -5,8 +5,8 @@ import ( "net/http" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" ) func TestRecordAPIResponseMetadataStoresHeadersWhenRequestLogDisabled(t *testing.T) { diff --git a/internal/runtime/executor/helps/payload_helpers.go b/internal/runtime/executor/helps/payload_helpers.go index 20358983094..b56274bc1fd 100644 --- a/internal/runtime/executor/helps/payload_helpers.go +++ b/internal/runtime/executor/helps/payload_helpers.go @@ -7,9 +7,9 @@ import ( "strconv" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/runtime/executor/helps/payload_helpers_disable_image_generation_test.go b/internal/runtime/executor/helps/payload_helpers_disable_image_generation_test.go index d2649703baf..f28d4bc82d6 100644 --- a/internal/runtime/executor/helps/payload_helpers_disable_image_generation_test.go +++ b/internal/runtime/executor/helps/payload_helpers_disable_image_generation_test.go @@ -4,7 +4,7 @@ import ( "net/http" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" "github.com/tidwall/gjson" ) diff --git a/internal/runtime/executor/helps/proxy_helpers.go b/internal/runtime/executor/helps/proxy_helpers.go index 572f87c7a1c..e12262529d8 100644 --- a/internal/runtime/executor/helps/proxy_helpers.go +++ b/internal/runtime/executor/helps/proxy_helpers.go @@ -6,9 +6,9 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/proxyutil" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/proxyutil" log "github.com/sirupsen/logrus" ) diff --git a/internal/runtime/executor/helps/proxy_helpers_test.go b/internal/runtime/executor/helps/proxy_helpers_test.go index fb57b6b7453..a3d0071b90e 100644 --- a/internal/runtime/executor/helps/proxy_helpers_test.go +++ b/internal/runtime/executor/helps/proxy_helpers_test.go @@ -5,9 +5,9 @@ import ( "net/http" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" ) func TestNewProxyAwareHTTPClientDirectBypassesGlobalProxy(t *testing.T) { diff --git a/internal/runtime/executor/helps/session_id_cache.go b/internal/runtime/executor/helps/session_id_cache.go index 015fb3e38b1..9ef1828403e 100644 --- a/internal/runtime/executor/helps/session_id_cache.go +++ b/internal/runtime/executor/helps/session_id_cache.go @@ -9,8 +9,8 @@ import ( "sync" "time" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" "github.com/google/uuid" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" ) type sessionIDCacheEntry struct { diff --git a/internal/runtime/executor/helps/thinking_providers.go b/internal/runtime/executor/helps/thinking_providers.go index d8848cff47c..fa9c87733de 100644 --- a/internal/runtime/executor/helps/thinking_providers.go +++ b/internal/runtime/executor/helps/thinking_providers.go @@ -1,12 +1,12 @@ package helps import ( - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/antigravity" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/claude" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/codex" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/interactions" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/kimi" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/openai" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/xai" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/antigravity" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/claude" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/codex" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/gemini" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/interactions" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/kimi" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/openai" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/xai" ) diff --git a/internal/runtime/executor/helps/usage_helpers.go b/internal/runtime/executor/helps/usage_helpers.go index aad386d0c19..892428d816b 100644 --- a/internal/runtime/executor/helps/usage_helpers.go +++ b/internal/runtime/executor/helps/usage_helpers.go @@ -12,11 +12,11 @@ import ( "sync" "time" + internallogging "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/usage" "github.com/gin-gonic/gin" - internallogging "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/usage" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/runtime/executor/helps/usage_helpers_test.go b/internal/runtime/executor/helps/usage_helpers_test.go index 71a0d9d9d2b..287cffa97cf 100644 --- a/internal/runtime/executor/helps/usage_helpers_test.go +++ b/internal/runtime/executor/helps/usage_helpers_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/usage" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/usage" ) func TestParseOpenAIUsageChatCompletions(t *testing.T) { diff --git a/internal/runtime/executor/helps/user_id_cache.go b/internal/runtime/executor/helps/user_id_cache.go index 7ed871326aa..aee1672e63c 100644 --- a/internal/runtime/executor/helps/user_id_cache.go +++ b/internal/runtime/executor/helps/user_id_cache.go @@ -9,7 +9,7 @@ import ( "sync" "time" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" ) type userIDCacheEntry struct { diff --git a/internal/runtime/executor/helps/utls_client.go b/internal/runtime/executor/helps/utls_client.go index ad3315c6633..3d409e4937f 100644 --- a/internal/runtime/executor/helps/utls_client.go +++ b/internal/runtime/executor/helps/utls_client.go @@ -8,10 +8,10 @@ import ( "sync" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/proxyutil" tls "github.com/refraction-networking/utls" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/proxyutil" log "github.com/sirupsen/logrus" "golang.org/x/net/http2" "golang.org/x/net/proxy" diff --git a/internal/runtime/executor/kimi_executor.go b/internal/runtime/executor/kimi_executor.go index f0fb217072b..7bc2ba773ec 100644 --- a/internal/runtime/executor/kimi_executor.go +++ b/internal/runtime/executor/kimi_executor.go @@ -13,14 +13,14 @@ import ( "strings" "time" - kimiauth "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/kimi" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + kimiauth "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/kimi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/runtime/executor/openai_compat_executor.go b/internal/runtime/executor/openai_compat_executor.go index 7588161430c..8f05c4409f1 100644 --- a/internal/runtime/executor/openai_compat_executor.go +++ b/internal/runtime/executor/openai_compat_executor.go @@ -14,13 +14,13 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/sjson" ) diff --git a/internal/runtime/executor/openai_compat_executor_compact_test.go b/internal/runtime/executor/openai_compat_executor_compact_test.go index cf5fe636b26..f5d5521ca90 100644 --- a/internal/runtime/executor/openai_compat_executor_compact_test.go +++ b/internal/runtime/executor/openai_compat_executor_compact_test.go @@ -12,10 +12,10 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/internal/runtime/executor/openai_responses_signature.go b/internal/runtime/executor/openai_responses_signature.go index 8f5c847cc3e..71c9461334c 100644 --- a/internal/runtime/executor/openai_responses_signature.go +++ b/internal/runtime/executor/openai_responses_signature.go @@ -5,8 +5,8 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/runtime/executor/xai_executor.go b/internal/runtime/executor/xai_executor.go index bff83c4d8b9..36ac66420de 100644 --- a/internal/runtime/executor/xai_executor.go +++ b/internal/runtime/executor/xai_executor.go @@ -14,17 +14,17 @@ import ( "strings" "time" + xaiauth "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/xai" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/google/uuid" - xaiauth "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/xai" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/runtime/executor/xai_executor_test.go b/internal/runtime/executor/xai_executor_test.go index 90a7ca44875..40efe4551e6 100644 --- a/internal/runtime/executor/xai_executor_test.go +++ b/internal/runtime/executor/xai_executor_test.go @@ -13,15 +13,15 @@ import ( "strings" "testing" + xaiauth "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/xai" + internalcache "github.com/awsl-project/CLIProxyAPI/v7/internal/cache" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/gin-gonic/gin" "github.com/google/uuid" - xaiauth "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/xai" - internalcache "github.com/router-for-me/CLIProxyAPI/v7/internal/cache" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/runtime/executor/xai_reasoning_replay.go b/internal/runtime/executor/xai_reasoning_replay.go index 08f418a5570..f060738e4a9 100644 --- a/internal/runtime/executor/xai_reasoning_replay.go +++ b/internal/runtime/executor/xai_reasoning_replay.go @@ -6,11 +6,11 @@ import ( "encoding/hex" "strings" - internalcache "github.com/router-for-me/CLIProxyAPI/v7/internal/cache" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + internalcache "github.com/awsl-project/CLIProxyAPI/v7/internal/cache" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/internal/runtime/executor/xai_websockets_executor.go b/internal/runtime/executor/xai_websockets_executor.go index 72a43d428a9..29773f7af94 100644 --- a/internal/runtime/executor/xai_websockets_executor.go +++ b/internal/runtime/executor/xai_websockets_executor.go @@ -14,14 +14,14 @@ import ( "sync" "time" + xaiauth "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/xai" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/gorilla/websocket" - xaiauth "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/xai" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/runtime/executor/xai_websockets_executor_test.go b/internal/runtime/executor/xai_websockets_executor_test.go index 114042b500e..ec24b047895 100644 --- a/internal/runtime/executor/xai_websockets_executor_test.go +++ b/internal/runtime/executor/xai_websockets_executor_test.go @@ -11,12 +11,12 @@ import ( "testing" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/gorilla/websocket" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/internal/store/gitstore.go b/internal/store/gitstore.go index cd2099d6f41..fbb302148b7 100644 --- a/internal/store/gitstore.go +++ b/internal/store/gitstore.go @@ -12,13 +12,13 @@ import ( "sync" "time" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/go-git/go-git/v6" "github.com/go-git/go-git/v6/config" "github.com/go-git/go-git/v6/plumbing" "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/v7/sdk/cliproxy/auth" ) // gcInterval defines minimum time between garbage collection runs. diff --git a/internal/store/objectstore.go b/internal/store/objectstore.go index dff9211c5ef..13da454981b 100644 --- a/internal/store/objectstore.go +++ b/internal/store/objectstore.go @@ -15,10 +15,10 @@ import ( "sync" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/minio/minio-go/v7" "github.com/minio/minio-go/v7/pkg/credentials" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/internal/store/postgresstore.go b/internal/store/postgresstore.go index 4b979486ec5..b116dc03ea6 100644 --- a/internal/store/postgresstore.go +++ b/internal/store/postgresstore.go @@ -13,9 +13,9 @@ import ( "sync" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" _ "github.com/jackc/pgx/v5/stdlib" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/internal/thinking/apply.go b/internal/thinking/apply.go index 7194988cd8a..9dfe997e4f6 100644 --- a/internal/thinking/apply.go +++ b/internal/thinking/apply.go @@ -5,7 +5,7 @@ import ( "strings" "sync" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/internal/thinking/convert.go b/internal/thinking/convert.go index 31945daa7c4..7c86e6d6c88 100644 --- a/internal/thinking/convert.go +++ b/internal/thinking/convert.go @@ -3,7 +3,7 @@ package thinking import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" ) // levelToBudgetMap defines the standard Level → Budget mapping. diff --git a/internal/thinking/kimi_max_clamp_repro_test.go b/internal/thinking/kimi_max_clamp_repro_test.go index d5d3ff6ed72..4c90445da7d 100644 --- a/internal/thinking/kimi_max_clamp_repro_test.go +++ b/internal/thinking/kimi_max_clamp_repro_test.go @@ -3,10 +3,10 @@ package thinking_test import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/claude" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/kimi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/claude" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/kimi" "github.com/tidwall/gjson" ) diff --git a/internal/thinking/provider/antigravity/apply.go b/internal/thinking/provider/antigravity/apply.go index cb0659f1232..48f39c08eaf 100644 --- a/internal/thinking/provider/antigravity/apply.go +++ b/internal/thinking/provider/antigravity/apply.go @@ -9,8 +9,8 @@ package antigravity import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/thinking/provider/claude/apply.go b/internal/thinking/provider/claude/apply.go index 140a8135f77..13798dee6c0 100644 --- a/internal/thinking/provider/claude/apply.go +++ b/internal/thinking/provider/claude/apply.go @@ -9,8 +9,8 @@ package claude import ( - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/thinking/provider/codex/apply.go b/internal/thinking/provider/codex/apply.go index 83f5ae8457f..726324dfe8d 100644 --- a/internal/thinking/provider/codex/apply.go +++ b/internal/thinking/provider/codex/apply.go @@ -7,8 +7,8 @@ package codex import ( - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/thinking/provider/gemini/apply.go b/internal/thinking/provider/gemini/apply.go index 92a8d7ec7ca..4c51c097260 100644 --- a/internal/thinking/provider/gemini/apply.go +++ b/internal/thinking/provider/gemini/apply.go @@ -12,8 +12,8 @@ package gemini import ( - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/thinking/provider/interactions/apply.go b/internal/thinking/provider/interactions/apply.go index 2951b511b60..d59aabc37d6 100644 --- a/internal/thinking/provider/interactions/apply.go +++ b/internal/thinking/provider/interactions/apply.go @@ -4,8 +4,8 @@ package interactions import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/thinking/provider/kimi/apply.go b/internal/thinking/provider/kimi/apply.go index ea3ed572f03..a72628382a5 100644 --- a/internal/thinking/provider/kimi/apply.go +++ b/internal/thinking/provider/kimi/apply.go @@ -7,8 +7,8 @@ package kimi import ( "fmt" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/thinking/provider/openai/apply.go b/internal/thinking/provider/openai/apply.go index 1e87b72b37d..7ca1a6898bf 100644 --- a/internal/thinking/provider/openai/apply.go +++ b/internal/thinking/provider/openai/apply.go @@ -6,8 +6,8 @@ package openai import ( - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/thinking/provider/xai/apply.go b/internal/thinking/provider/xai/apply.go index 3938a43252d..2db8af5e718 100644 --- a/internal/thinking/provider/xai/apply.go +++ b/internal/thinking/provider/xai/apply.go @@ -5,8 +5,8 @@ package xai import ( - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/codex" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/codex" ) // Applier implements thinking.ProviderApplier for xAI models. diff --git a/internal/thinking/types.go b/internal/thinking/types.go index 987ababc6f6..41c99d56d4a 100644 --- a/internal/thinking/types.go +++ b/internal/thinking/types.go @@ -4,7 +4,7 @@ // thinking configurations across various AI providers (Claude, Gemini, OpenAI, Codex, Antigravity, Kimi, xAI). package thinking -import "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" +import "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" // ThinkingMode represents the type of thinking configuration mode. type ThinkingMode int diff --git a/internal/thinking/validate.go b/internal/thinking/validate.go index 2352862f6b0..bbbe6e29fb9 100644 --- a/internal/thinking/validate.go +++ b/internal/thinking/validate.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" log "github.com/sirupsen/logrus" ) diff --git a/internal/translator/antigravity/claude/antigravity_claude_request.go b/internal/translator/antigravity/claude/antigravity_claude_request.go index 0a23d808001..666d5f85e0c 100644 --- a/internal/translator/antigravity/claude/antigravity_claude_request.go +++ b/internal/translator/antigravity/claude/antigravity_claude_request.go @@ -9,12 +9,12 @@ import ( "context" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/cache" - sigcompat "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/cache" + sigcompat "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/gemini/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/translator/antigravity/claude/antigravity_claude_request_test.go b/internal/translator/antigravity/claude/antigravity_claude_request_test.go index f6b38564611..f34a691aa94 100644 --- a/internal/translator/antigravity/claude/antigravity_claude_request_test.go +++ b/internal/translator/antigravity/claude/antigravity_claude_request_test.go @@ -7,8 +7,8 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/cache" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/cache" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" log "github.com/sirupsen/logrus" "github.com/sirupsen/logrus/hooks/test" "github.com/tidwall/gjson" diff --git a/internal/translator/antigravity/claude/antigravity_claude_response.go b/internal/translator/antigravity/claude/antigravity_claude_response.go index ad6b5fbb3a6..73c522ad64b 100644 --- a/internal/translator/antigravity/claude/antigravity_claude_response.go +++ b/internal/translator/antigravity/claude/antigravity_claude_response.go @@ -15,9 +15,9 @@ import ( "sync/atomic" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/cache" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/cache" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" diff --git a/internal/translator/antigravity/claude/antigravity_claude_response_test.go b/internal/translator/antigravity/claude/antigravity_claude_response_test.go index c039062c134..f14b52bf739 100644 --- a/internal/translator/antigravity/claude/antigravity_claude_response_test.go +++ b/internal/translator/antigravity/claude/antigravity_claude_response_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/cache" + "github.com/awsl-project/CLIProxyAPI/v7/internal/cache" "github.com/tidwall/gjson" ) diff --git a/internal/translator/antigravity/claude/init.go b/internal/translator/antigravity/claude/init.go index 4d9bd721ff0..a7e132126b6 100644 --- a/internal/translator/antigravity/claude/init.go +++ b/internal/translator/antigravity/claude/init.go @@ -1,9 +1,9 @@ package claude import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/antigravity/claude/signature_validation.go b/internal/translator/antigravity/claude/signature_validation.go index 9431a4c7e73..145194d0f8c 100644 --- a/internal/translator/antigravity/claude/signature_validation.go +++ b/internal/translator/antigravity/claude/signature_validation.go @@ -2,8 +2,8 @@ package claude import ( - "github.com/router-for-me/CLIProxyAPI/v7/internal/cache" - "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" + "github.com/awsl-project/CLIProxyAPI/v7/internal/cache" + "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" ) const maxBypassSignatureLen = signature.MaxClaudeThinkingSignatureLen diff --git a/internal/translator/antigravity/claude/web_search.go b/internal/translator/antigravity/claude/web_search.go index e524abe3337..55a504d83f1 100644 --- a/internal/translator/antigravity/claude/web_search.go +++ b/internal/translator/antigravity/claude/web_search.go @@ -6,7 +6,7 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/antigravity/gemini/antigravity_gemini_request.go b/internal/translator/antigravity/gemini/antigravity_gemini_request.go index 2d373890a51..5bcc9ead183 100644 --- a/internal/translator/antigravity/gemini/antigravity_gemini_request.go +++ b/internal/translator/antigravity/gemini/antigravity_gemini_request.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/gemini/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/translator/antigravity/gemini/antigravity_gemini_request_test.go b/internal/translator/antigravity/gemini/antigravity_gemini_request_test.go index 3009c1f76eb..961d61b2441 100644 --- a/internal/translator/antigravity/gemini/antigravity_gemini_request_test.go +++ b/internal/translator/antigravity/gemini/antigravity_gemini_request_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" + "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" "github.com/tidwall/gjson" "google.golang.org/protobuf/encoding/protowire" ) diff --git a/internal/translator/antigravity/gemini/antigravity_gemini_response.go b/internal/translator/antigravity/gemini/antigravity_gemini_response.go index b6a0cc8b769..d9583d093d7 100644 --- a/internal/translator/antigravity/gemini/antigravity_gemini_response.go +++ b/internal/translator/antigravity/gemini/antigravity_gemini_response.go @@ -9,7 +9,7 @@ import ( "bytes" "context" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/antigravity/gemini/init.go b/internal/translator/antigravity/gemini/init.go index dcb331618ac..8d51171e333 100644 --- a/internal/translator/antigravity/gemini/init.go +++ b/internal/translator/antigravity/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/antigravity/interactions/init.go b/internal/translator/antigravity/interactions/init.go index af231b003c9..4cf682ef5e5 100644 --- a/internal/translator/antigravity/interactions/init.go +++ b/internal/translator/antigravity/interactions/init.go @@ -1,9 +1,9 @@ package interactions import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/antigravity/interactions/interactions_antigravity_request.go b/internal/translator/antigravity/interactions/interactions_antigravity_request.go index d391fd14627..af85a22f7fb 100644 --- a/internal/translator/antigravity/interactions/interactions_antigravity_request.go +++ b/internal/translator/antigravity/interactions/interactions_antigravity_request.go @@ -5,8 +5,8 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/antigravity/interactions/interactions_antigravity_response.go b/internal/translator/antigravity/interactions/interactions_antigravity_response.go index 2792eb17568..e51e69f0311 100644 --- a/internal/translator/antigravity/interactions/interactions_antigravity_response.go +++ b/internal/translator/antigravity/interactions/interactions_antigravity_response.go @@ -7,7 +7,7 @@ import ( "strings" "time" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/antigravity/openai/chat-completions/antigravity_openai_request.go b/internal/translator/antigravity/openai/chat-completions/antigravity_openai_request.go index 1c95b7318be..51f5d771abb 100644 --- a/internal/translator/antigravity/openai/chat-completions/antigravity_openai_request.go +++ b/internal/translator/antigravity/openai/chat-completions/antigravity_openai_request.go @@ -6,9 +6,9 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/gemini/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/translator/antigravity/openai/chat-completions/antigravity_openai_response.go b/internal/translator/antigravity/openai/chat-completions/antigravity_openai_response.go index 8890255f895..bdc0a3081d9 100644 --- a/internal/translator/antigravity/openai/chat-completions/antigravity_openai_response.go +++ b/internal/translator/antigravity/openai/chat-completions/antigravity_openai_response.go @@ -13,10 +13,10 @@ import ( "sync/atomic" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" log "github.com/sirupsen/logrus" - . "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/gemini/openai/chat-completions" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/gemini/openai/chat-completions" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/antigravity/openai/chat-completions/init.go b/internal/translator/antigravity/openai/chat-completions/init.go index 2217e7919cd..c61ab711f1a 100644 --- a/internal/translator/antigravity/openai/chat-completions/init.go +++ b/internal/translator/antigravity/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/antigravity/openai/responses/antigravity_openai-responses_request.go b/internal/translator/antigravity/openai/responses/antigravity_openai-responses_request.go index 491fcded2b7..a4c347a45a9 100644 --- a/internal/translator/antigravity/openai/responses/antigravity_openai-responses_request.go +++ b/internal/translator/antigravity/openai/responses/antigravity_openai-responses_request.go @@ -4,9 +4,9 @@ import ( "encoding/json" "strings" - sigcompat "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" - . "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/antigravity/gemini" - . "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/gemini/openai/responses" + sigcompat "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/antigravity/gemini" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/gemini/openai/responses" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" ) diff --git a/internal/translator/antigravity/openai/responses/antigravity_openai-responses_request_test.go b/internal/translator/antigravity/openai/responses/antigravity_openai-responses_request_test.go index 58549f3c0a9..f89cd28f20e 100644 --- a/internal/translator/antigravity/openai/responses/antigravity_openai-responses_request_test.go +++ b/internal/translator/antigravity/openai/responses/antigravity_openai-responses_request_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - sigcompat "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" + sigcompat "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" "github.com/tidwall/gjson" "google.golang.org/protobuf/encoding/protowire" ) diff --git a/internal/translator/antigravity/openai/responses/antigravity_openai-responses_response.go b/internal/translator/antigravity/openai/responses/antigravity_openai-responses_response.go index 3256950461e..1bfded6f6bf 100644 --- a/internal/translator/antigravity/openai/responses/antigravity_openai-responses_response.go +++ b/internal/translator/antigravity/openai/responses/antigravity_openai-responses_response.go @@ -3,7 +3,7 @@ package responses import ( "context" - . "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/gemini/openai/responses" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/gemini/openai/responses" "github.com/tidwall/gjson" ) diff --git a/internal/translator/antigravity/openai/responses/init.go b/internal/translator/antigravity/openai/responses/init.go index 49041f29059..0339d2b18cf 100644 --- a/internal/translator/antigravity/openai/responses/init.go +++ b/internal/translator/antigravity/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/claude/gemini/claude_gemini_request.go b/internal/translator/claude/gemini/claude_gemini_request.go index 9a0a31e43c1..4c81ce0eb2f 100644 --- a/internal/translator/claude/gemini/claude_gemini_request.go +++ b/internal/translator/claude/gemini/claude_gemini_request.go @@ -13,10 +13,10 @@ import ( "math/big" "strings" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/claude/gemini/claude_gemini_response.go b/internal/translator/claude/gemini/claude_gemini_response.go index 74865ead30e..6575e4ce35d 100644 --- a/internal/translator/claude/gemini/claude_gemini_response.go +++ b/internal/translator/claude/gemini/claude_gemini_response.go @@ -12,7 +12,7 @@ import ( "strings" "time" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/claude/gemini/init.go b/internal/translator/claude/gemini/init.go index 0ed533cebfc..64b912fe28e 100644 --- a/internal/translator/claude/gemini/init.go +++ b/internal/translator/claude/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/claude/interactions/init.go b/internal/translator/claude/interactions/init.go index e1aa15047ed..a8d82351606 100644 --- a/internal/translator/claude/interactions/init.go +++ b/internal/translator/claude/interactions/init.go @@ -1,9 +1,9 @@ package interactions import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/claude/interactions/interactions_claude_request.go b/internal/translator/claude/interactions/interactions_claude_request.go index 604dfaf1530..0103ee58c31 100644 --- a/internal/translator/claude/interactions/interactions_claude_request.go +++ b/internal/translator/claude/interactions/interactions_claude_request.go @@ -4,8 +4,8 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/claude/interactions/interactions_claude_response.go b/internal/translator/claude/interactions/interactions_claude_response.go index 4a6e06cc850..a0b8bd56331 100644 --- a/internal/translator/claude/interactions/interactions_claude_response.go +++ b/internal/translator/claude/interactions/interactions_claude_response.go @@ -8,7 +8,7 @@ import ( "strings" "time" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/claude/openai/chat-completions/claude_openai_request.go b/internal/translator/claude/openai/chat-completions/claude_openai_request.go index fb7fb2b8a7f..a685b53a3d0 100644 --- a/internal/translator/claude/openai/chat-completions/claude_openai_request.go +++ b/internal/translator/claude/openai/chat-completions/claude_openai_request.go @@ -13,11 +13,11 @@ import ( "math/big" "strings" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/claude/openai/chat-completions/init.go b/internal/translator/claude/openai/chat-completions/init.go index 7474fb2a386..12abcde7150 100644 --- a/internal/translator/claude/openai/chat-completions/init.go +++ b/internal/translator/claude/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/claude/openai/responses/claude_openai-responses_request.go b/internal/translator/claude/openai/responses/claude_openai-responses_request.go index ad52b9596a8..3c1dfbaf637 100644 --- a/internal/translator/claude/openai/responses/claude_openai-responses_request.go +++ b/internal/translator/claude/openai/responses/claude_openai-responses_request.go @@ -8,12 +8,12 @@ import ( "math/big" "strings" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + sigcompat "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - sigcompat "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/claude/openai/responses/claude_openai-responses_request_test.go b/internal/translator/claude/openai/responses/claude_openai-responses_request_test.go index cf38ef7ee03..a483f7c2e11 100644 --- a/internal/translator/claude/openai/responses/claude_openai-responses_request_test.go +++ b/internal/translator/claude/openai/responses/claude_openai-responses_request_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - sigcompat "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" + sigcompat "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" "github.com/tidwall/gjson" "google.golang.org/protobuf/encoding/protowire" ) diff --git a/internal/translator/claude/openai/responses/claude_openai-responses_response.go b/internal/translator/claude/openai/responses/claude_openai-responses_response.go index c27cb4b388f..a5dc43daa07 100644 --- a/internal/translator/claude/openai/responses/claude_openai-responses_response.go +++ b/internal/translator/claude/openai/responses/claude_openai-responses_response.go @@ -8,7 +8,7 @@ import ( "strings" "time" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/claude/openai/responses/claude_openai-responses_response_test.go b/internal/translator/claude/openai/responses/claude_openai-responses_response_test.go index 9db2e0586a9..fe11742a1a2 100644 --- a/internal/translator/claude/openai/responses/claude_openai-responses_response_test.go +++ b/internal/translator/claude/openai/responses/claude_openai-responses_response_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/internal/translator/claude/openai/responses/init.go b/internal/translator/claude/openai/responses/init.go index 575c9ec71a8..2efff0956f5 100644 --- a/internal/translator/claude/openai/responses/init.go +++ b/internal/translator/claude/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/codex/claude/codex_claude_request.go b/internal/translator/codex/claude/codex_claude_request.go index 21732fffd36..32a4f251966 100644 --- a/internal/translator/codex/claude/codex_claude_request.go +++ b/internal/translator/codex/claude/codex_claude_request.go @@ -12,10 +12,10 @@ import ( "strconv" "strings" - sigcompat "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + sigcompat "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/codex/claude/codex_claude_response.go b/internal/translator/codex/claude/codex_claude_response.go index b60e7c3ff9b..cfa5a141739 100644 --- a/internal/translator/codex/claude/codex_claude_response.go +++ b/internal/translator/codex/claude/codex_claude_response.go @@ -11,8 +11,8 @@ import ( "context" "strings" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/codex/claude/codex_claude_response_web_search.go b/internal/translator/codex/claude/codex_claude_response_web_search.go index 1f9c59a7c4a..c89211affef 100644 --- a/internal/translator/codex/claude/codex_claude_response_web_search.go +++ b/internal/translator/codex/claude/codex_claude_response_web_search.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/codex/claude/init.go b/internal/translator/codex/claude/init.go index af44b9dd49e..a0e2822aa68 100644 --- a/internal/translator/codex/claude/init.go +++ b/internal/translator/codex/claude/init.go @@ -1,9 +1,9 @@ package claude import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/codex/gemini/codex_gemini_request.go b/internal/translator/codex/gemini/codex_gemini_request.go index d72a5f6fa51..84a0b5b20bd 100644 --- a/internal/translator/codex/gemini/codex_gemini_request.go +++ b/internal/translator/codex/gemini/codex_gemini_request.go @@ -12,8 +12,8 @@ import ( "strconv" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/codex/gemini/codex_gemini_response.go b/internal/translator/codex/gemini/codex_gemini_response.go index a5144ea633e..03e2e73748d 100644 --- a/internal/translator/codex/gemini/codex_gemini_response.go +++ b/internal/translator/codex/gemini/codex_gemini_response.go @@ -11,7 +11,7 @@ import ( "strings" "time" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/codex/gemini/init.go b/internal/translator/codex/gemini/init.go index b670d8d9b4e..29b34742b2d 100644 --- a/internal/translator/codex/gemini/init.go +++ b/internal/translator/codex/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/codex/interactions/init.go b/internal/translator/codex/interactions/init.go index af9bc0ef42f..21953f2792e 100644 --- a/internal/translator/codex/interactions/init.go +++ b/internal/translator/codex/interactions/init.go @@ -1,9 +1,9 @@ package interactions import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/codex/interactions/interactions_codex_request.go b/internal/translator/codex/interactions/interactions_codex_request.go index fee429e93d7..68a3f47a288 100644 --- a/internal/translator/codex/interactions/interactions_codex_request.go +++ b/internal/translator/codex/interactions/interactions_codex_request.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/codex/interactions/interactions_codex_response.go b/internal/translator/codex/interactions/interactions_codex_response.go index dec2b28aab6..1ee8ea75180 100644 --- a/internal/translator/codex/interactions/interactions_codex_response.go +++ b/internal/translator/codex/interactions/interactions_codex_response.go @@ -7,7 +7,7 @@ import ( "strings" "time" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/codex/openai/chat-completions/init.go b/internal/translator/codex/openai/chat-completions/init.go index 94db2a7db85..3eed8a85781 100644 --- a/internal/translator/codex/openai/chat-completions/init.go +++ b/internal/translator/codex/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/codex/openai/responses/init.go b/internal/translator/codex/openai/responses/init.go index 24e7e3561cb..1583c2bcccf 100644 --- a/internal/translator/codex/openai/responses/init.go +++ b/internal/translator/codex/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/common/claude_system.go b/internal/translator/common/claude_system.go index 3eef9bcde4c..6ba05729066 100644 --- a/internal/translator/common/claude_system.go +++ b/internal/translator/common/claude_system.go @@ -3,7 +3,7 @@ package common import ( "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/tidwall/gjson" ) diff --git a/internal/translator/gemini/claude/gemini_claude_request.go b/internal/translator/gemini/claude/gemini_claude_request.go index 5443b86af52..12195ac572f 100644 --- a/internal/translator/gemini/claude/gemini_claude_request.go +++ b/internal/translator/gemini/claude/gemini_claude_request.go @@ -9,10 +9,10 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/gemini/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/gemini/claude/gemini_claude_response.go b/internal/translator/gemini/claude/gemini_claude_response.go index 8f55bd66782..51f479407f4 100644 --- a/internal/translator/gemini/claude/gemini_claude_response.go +++ b/internal/translator/gemini/claude/gemini_claude_response.go @@ -13,8 +13,8 @@ import ( "strings" "sync/atomic" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/gemini/claude/init.go b/internal/translator/gemini/claude/init.go index d03140957c1..57cdf720731 100644 --- a/internal/translator/gemini/claude/init.go +++ b/internal/translator/gemini/claude/init.go @@ -1,9 +1,9 @@ package claude import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/gemini/gemini/gemini_gemini_request.go b/internal/translator/gemini/gemini/gemini_gemini_request.go index 4d7e0b7d375..eaaf6d808e0 100644 --- a/internal/translator/gemini/gemini/gemini_gemini_request.go +++ b/internal/translator/gemini/gemini/gemini_gemini_request.go @@ -7,9 +7,9 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/gemini/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/translator/gemini/gemini/gemini_gemini_response.go b/internal/translator/gemini/gemini/gemini_gemini_response.go index 74669a7e728..c60d8ccd918 100644 --- a/internal/translator/gemini/gemini/gemini_gemini_response.go +++ b/internal/translator/gemini/gemini/gemini_gemini_response.go @@ -4,7 +4,7 @@ import ( "bytes" "context" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" ) // PassthroughGeminiResponseStream forwards Gemini responses unchanged. diff --git a/internal/translator/gemini/gemini/init.go b/internal/translator/gemini/gemini/init.go index ca9de2c6727..869e7b62a13 100644 --- a/internal/translator/gemini/gemini/init.go +++ b/internal/translator/gemini/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) // Register a no-op response translator and a request normalizer for Gemini→Gemini. diff --git a/internal/translator/gemini/interactions/init.go b/internal/translator/gemini/interactions/init.go index b888f03e8bf..2e350da5f59 100644 --- a/internal/translator/gemini/interactions/init.go +++ b/internal/translator/gemini/interactions/init.go @@ -1,9 +1,9 @@ package interactions import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/gemini/interactions/interactions_gemini_common.go b/internal/translator/gemini/interactions/interactions_gemini_common.go index 3b53d47435f..800b3434b59 100644 --- a/internal/translator/gemini/interactions/interactions_gemini_common.go +++ b/internal/translator/gemini/interactions/interactions_gemini_common.go @@ -8,8 +8,8 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/gemini/interactions/interactions_gemini_response.go b/internal/translator/gemini/interactions/interactions_gemini_response.go index c89b3052af6..e232cd84f6a 100644 --- a/internal/translator/gemini/interactions/interactions_gemini_response.go +++ b/internal/translator/gemini/interactions/interactions_gemini_response.go @@ -7,7 +7,7 @@ import ( "strings" "time" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/gemini/openai/chat-completions/gemini_openai_request.go b/internal/translator/gemini/openai/chat-completions/gemini_openai_request.go index d7b5e1785c3..e0244e50626 100644 --- a/internal/translator/gemini/openai/chat-completions/gemini_openai_request.go +++ b/internal/translator/gemini/openai/chat-completions/gemini_openai_request.go @@ -6,10 +6,10 @@ import ( "fmt" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - sigcompat "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + sigcompat "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/gemini/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/translator/gemini/openai/chat-completions/gemini_openai_response.go b/internal/translator/gemini/openai/chat-completions/gemini_openai_response.go index 155a8c5f308..5a07d48b8a4 100644 --- a/internal/translator/gemini/openai/chat-completions/gemini_openai_response.go +++ b/internal/translator/gemini/openai/chat-completions/gemini_openai_response.go @@ -13,7 +13,7 @@ import ( "sync/atomic" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/internal/translator/gemini/openai/chat-completions/gemini_openai_signature_test.go b/internal/translator/gemini/openai/chat-completions/gemini_openai_signature_test.go index 4d4326a8dc7..b44a415af13 100644 --- a/internal/translator/gemini/openai/chat-completions/gemini_openai_signature_test.go +++ b/internal/translator/gemini/openai/chat-completions/gemini_openai_signature_test.go @@ -3,7 +3,7 @@ package chat_completions import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" + "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" "github.com/tidwall/gjson" ) diff --git a/internal/translator/gemini/openai/chat-completions/init.go b/internal/translator/gemini/openai/chat-completions/init.go index 2eb673310fa..0278b3aa498 100644 --- a/internal/translator/gemini/openai/chat-completions/init.go +++ b/internal/translator/gemini/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/gemini/openai/responses/gemini_openai-responses_request.go b/internal/translator/gemini/openai/responses/gemini_openai-responses_request.go index c0ccdffdc2b..df944c4defb 100644 --- a/internal/translator/gemini/openai/responses/gemini_openai-responses_request.go +++ b/internal/translator/gemini/openai/responses/gemini_openai-responses_request.go @@ -5,9 +5,9 @@ import ( "fmt" "strings" - sigcompat "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/gemini/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + sigcompat "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/gemini/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/gemini/openai/responses/gemini_openai-responses_response.go b/internal/translator/gemini/openai/responses/gemini_openai-responses_response.go index 36d30df753e..db0e855680e 100644 --- a/internal/translator/gemini/openai/responses/gemini_openai-responses_response.go +++ b/internal/translator/gemini/openai/responses/gemini_openai-responses_response.go @@ -8,8 +8,8 @@ import ( "sync/atomic" "time" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/gemini/openai/responses/init.go b/internal/translator/gemini/openai/responses/init.go index 404dd68ae5b..d7b10ab4a66 100644 --- a/internal/translator/gemini/openai/responses/init.go +++ b/internal/translator/gemini/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/init.go b/internal/translator/init.go index 65428dd0bb5..33443d98598 100644 --- a/internal/translator/init.go +++ b/internal/translator/init.go @@ -1,35 +1,35 @@ package translator import ( - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/claude/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/claude/interactions" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/claude/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/claude/openai/responses" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/claude/gemini" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/claude/interactions" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/claude/openai/chat-completions" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/claude/openai/responses" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/codex/claude" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/codex/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/codex/interactions" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/codex/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/codex/openai/responses" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/codex/claude" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/codex/gemini" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/codex/interactions" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/codex/openai/chat-completions" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/codex/openai/responses" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/gemini/claude" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/gemini/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/gemini/interactions" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/gemini/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/gemini/openai/responses" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/gemini/claude" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/gemini/gemini" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/gemini/interactions" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/gemini/openai/chat-completions" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/gemini/openai/responses" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/interactions/claude" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/interactions/claude" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/openai/claude" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/openai/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/openai/interactions/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/openai/interactions/responses" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/openai/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/openai/openai/responses" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/openai/claude" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/openai/gemini" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/openai/interactions/chat-completions" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/openai/interactions/responses" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/openai/openai/chat-completions" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/openai/openai/responses" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/antigravity/claude" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/antigravity/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/antigravity/interactions" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/antigravity/openai/chat-completions" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/antigravity/openai/responses" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/antigravity/claude" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/antigravity/gemini" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/antigravity/interactions" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/antigravity/openai/chat-completions" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/antigravity/openai/responses" ) diff --git a/internal/translator/interactions/claude/init.go b/internal/translator/interactions/claude/init.go index 5a1b0228e37..adf9759779f 100644 --- a/internal/translator/interactions/claude/init.go +++ b/internal/translator/interactions/claude/init.go @@ -1,9 +1,9 @@ package claude import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/interactions/claude/interactions_claude_response.go b/internal/translator/interactions/claude/interactions_claude_response.go index 42a279906a2..b6be78541db 100644 --- a/internal/translator/interactions/claude/interactions_claude_response.go +++ b/internal/translator/interactions/claude/interactions_claude_response.go @@ -7,7 +7,7 @@ import ( "strings" "time" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/openai/claude/init.go b/internal/translator/openai/claude/init.go index baeeca84bc3..9cda630ba8f 100644 --- a/internal/translator/openai/claude/init.go +++ b/internal/translator/openai/claude/init.go @@ -1,9 +1,9 @@ package claude import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/openai/claude/openai_claude_request.go b/internal/translator/openai/claude/openai_claude_request.go index 94d0f721aae..771c8027427 100644 --- a/internal/translator/openai/claude/openai_claude_request.go +++ b/internal/translator/openai/claude/openai_claude_request.go @@ -8,10 +8,10 @@ package claude import ( "strings" - sigcompat "github.com/router-for-me/CLIProxyAPI/v7/internal/signature" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + sigcompat "github.com/awsl-project/CLIProxyAPI/v7/internal/signature" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/openai/claude/openai_claude_response.go b/internal/translator/openai/claude/openai_claude_response.go index 47f3f3897a2..6dc6af4b292 100644 --- a/internal/translator/openai/claude/openai_claude_response.go +++ b/internal/translator/openai/claude/openai_claude_response.go @@ -11,8 +11,8 @@ import ( "sort" "strings" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/openai/gemini/init.go b/internal/translator/openai/gemini/init.go index 24ae281effa..1dcb0979ac4 100644 --- a/internal/translator/openai/gemini/init.go +++ b/internal/translator/openai/gemini/init.go @@ -1,9 +1,9 @@ package gemini import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/openai/gemini/openai_gemini_request.go b/internal/translator/openai/gemini/openai_gemini_request.go index fed2fe0d5dc..f6fa3b2c57c 100644 --- a/internal/translator/openai/gemini/openai_gemini_request.go +++ b/internal/translator/openai/gemini/openai_gemini_request.go @@ -11,7 +11,7 @@ import ( "math/big" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/openai/gemini/openai_gemini_response.go b/internal/translator/openai/gemini/openai_gemini_response.go index f421cdd961b..067e8e448de 100644 --- a/internal/translator/openai/gemini/openai_gemini_response.go +++ b/internal/translator/openai/gemini/openai_gemini_response.go @@ -12,7 +12,7 @@ import ( "strconv" "strings" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/openai/interactions/chat-completions/init.go b/internal/translator/openai/interactions/chat-completions/init.go index 03101727721..fb30e06fb4a 100644 --- a/internal/translator/openai/interactions/chat-completions/init.go +++ b/internal/translator/openai/interactions/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/openai/interactions/chat-completions/interactions_openai_response.go b/internal/translator/openai/interactions/chat-completions/interactions_openai_response.go index e2c81ec3ab1..2a2830ce35a 100644 --- a/internal/translator/openai/interactions/chat-completions/interactions_openai_response.go +++ b/internal/translator/openai/interactions/chat-completions/interactions_openai_response.go @@ -7,7 +7,7 @@ import ( "strings" "time" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/openai/interactions/chat-completions/openai_interactions_response.go b/internal/translator/openai/interactions/chat-completions/openai_interactions_response.go index c4b6e2ffdee..c09f325f844 100644 --- a/internal/translator/openai/interactions/chat-completions/openai_interactions_response.go +++ b/internal/translator/openai/interactions/chat-completions/openai_interactions_response.go @@ -7,7 +7,7 @@ import ( "strings" "time" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/openai/interactions/responses/init.go b/internal/translator/openai/interactions/responses/init.go index c6fe53500b7..a1e05fb178d 100644 --- a/internal/translator/openai/interactions/responses/init.go +++ b/internal/translator/openai/interactions/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/openai/interactions/responses/interactions_openai_responses_response.go b/internal/translator/openai/interactions/responses/interactions_openai_responses_response.go index f2f61704e75..3736b06abf3 100644 --- a/internal/translator/openai/interactions/responses/interactions_openai_responses_response.go +++ b/internal/translator/openai/interactions/responses/interactions_openai_responses_response.go @@ -7,7 +7,7 @@ import ( "strings" "time" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/openai/openai/chat-completions/init.go b/internal/translator/openai/openai/chat-completions/init.go index bfe82cea722..8b7fb231714 100644 --- a/internal/translator/openai/openai/chat-completions/init.go +++ b/internal/translator/openai/openai/chat-completions/init.go @@ -1,9 +1,9 @@ package chat_completions import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/openai/openai/responses/init.go b/internal/translator/openai/openai/responses/init.go index c47081bae30..3f6c15fb026 100644 --- a/internal/translator/openai/openai/responses/init.go +++ b/internal/translator/openai/openai/responses/init.go @@ -1,9 +1,9 @@ package responses import ( - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/translator" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/translator" ) func init() { diff --git a/internal/translator/openai/openai/responses/openai_openai-responses_response.go b/internal/translator/openai/openai/responses/openai_openai-responses_response.go index bc390f30988..b294aa3f4e2 100644 --- a/internal/translator/openai/openai/responses/openai_openai-responses_response.go +++ b/internal/translator/openai/openai/responses/openai_openai-responses_response.go @@ -9,7 +9,7 @@ import ( "sync/atomic" "time" - translatorcommon "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/common" + translatorcommon "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/common" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/internal/translator/translator/translator.go b/internal/translator/translator/translator.go index 88766a83bb5..b95890fae8c 100644 --- a/internal/translator/translator/translator.go +++ b/internal/translator/translator/translator.go @@ -7,8 +7,8 @@ package translator import ( "context" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" ) // registry holds the default translator registry instance. diff --git a/internal/util/provider.go b/internal/util/provider.go index ae25a63148a..65b73cd3382 100644 --- a/internal/util/provider.go +++ b/internal/util/provider.go @@ -7,8 +7,8 @@ import ( "net/url" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" log "github.com/sirupsen/logrus" ) diff --git a/internal/util/proxy.go b/internal/util/proxy.go index 781dd54dc0e..530887e7709 100644 --- a/internal/util/proxy.go +++ b/internal/util/proxy.go @@ -6,8 +6,8 @@ package util import ( "net/http" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/proxyutil" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/proxyutil" log "github.com/sirupsen/logrus" ) diff --git a/internal/util/util.go b/internal/util/util.go index 2c50cf67b5b..a55bebb4b7d 100644 --- a/internal/util/util.go +++ b/internal/util/util.go @@ -11,7 +11,7 @@ import ( "regexp" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" log "github.com/sirupsen/logrus" ) diff --git a/internal/watcher/clients.go b/internal/watcher/clients.go index ec96412570f..e90b867eff0 100644 --- a/internal/watcher/clients.go +++ b/internal/watcher/clients.go @@ -13,12 +13,12 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/redisqueue" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher/diff" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher/synthesizer" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/redisqueue" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher/diff" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher/synthesizer" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/internal/watcher/config_reload.go b/internal/watcher/config_reload.go index 92c3864924d..9abf63b04ab 100644 --- a/internal/watcher/config_reload.go +++ b/internal/watcher/config_reload.go @@ -9,9 +9,9 @@ import ( "reflect" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher/diff" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher/diff" "gopkg.in/yaml.v3" log "github.com/sirupsen/logrus" diff --git a/internal/watcher/diff/auth_diff.go b/internal/watcher/diff/auth_diff.go index 39fe5e886d4..be576504626 100644 --- a/internal/watcher/diff/auth_diff.go +++ b/internal/watcher/diff/auth_diff.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) // BuildAuthChangeDetails computes a redacted, human-readable list of auth field changes. diff --git a/internal/watcher/diff/config_diff.go b/internal/watcher/diff/config_diff.go index c44ec8ffb38..5bfbb3aa5c2 100644 --- a/internal/watcher/diff/config_diff.go +++ b/internal/watcher/diff/config_diff.go @@ -6,7 +6,7 @@ import ( "reflect" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" ) // BuildConfigChangeDetails computes a redacted, human-readable list of config changes. diff --git a/internal/watcher/diff/config_diff_test.go b/internal/watcher/diff/config_diff_test.go index 936a3eb0427..d9814b155bf 100644 --- a/internal/watcher/diff/config_diff_test.go +++ b/internal/watcher/diff/config_diff_test.go @@ -3,8 +3,8 @@ package diff import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" ) func TestBuildConfigChangeDetails(t *testing.T) { diff --git a/internal/watcher/diff/model_hash.go b/internal/watcher/diff/model_hash.go index f3823cd07c1..e6a07aa90cb 100644 --- a/internal/watcher/diff/model_hash.go +++ b/internal/watcher/diff/model_hash.go @@ -8,7 +8,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" ) // ComputeOpenAICompatModelsHash returns a stable hash for OpenAI-compat models. diff --git a/internal/watcher/diff/model_hash_test.go b/internal/watcher/diff/model_hash_test.go index b51ba5bc55b..d51df854fec 100644 --- a/internal/watcher/diff/model_hash_test.go +++ b/internal/watcher/diff/model_hash_test.go @@ -3,7 +3,7 @@ package diff import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" ) func TestComputeOpenAICompatModelsHash_Deterministic(t *testing.T) { diff --git a/internal/watcher/diff/models_summary.go b/internal/watcher/diff/models_summary.go index 544f74857fa..b9a747e11f3 100644 --- a/internal/watcher/diff/models_summary.go +++ b/internal/watcher/diff/models_summary.go @@ -6,7 +6,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" ) type GeminiModelsSummary struct { diff --git a/internal/watcher/diff/oauth_excluded_test.go b/internal/watcher/diff/oauth_excluded_test.go index 72beac7eec6..b893c9f92e0 100644 --- a/internal/watcher/diff/oauth_excluded_test.go +++ b/internal/watcher/diff/oauth_excluded_test.go @@ -3,7 +3,7 @@ package diff import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" ) func TestSummarizeExcludedModels_NormalizesAndDedupes(t *testing.T) { diff --git a/internal/watcher/diff/oauth_model_alias.go b/internal/watcher/diff/oauth_model_alias.go index d95bfd39d25..a6bd6795ecd 100644 --- a/internal/watcher/diff/oauth_model_alias.go +++ b/internal/watcher/diff/oauth_model_alias.go @@ -7,7 +7,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" ) type OAuthModelAliasSummary struct { diff --git a/internal/watcher/diff/openai_compat.go b/internal/watcher/diff/openai_compat.go index acdf39f928d..bd8914596b5 100644 --- a/internal/watcher/diff/openai_compat.go +++ b/internal/watcher/diff/openai_compat.go @@ -7,7 +7,7 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" ) // DiffOpenAICompatibility produces human-readable change descriptions. diff --git a/internal/watcher/diff/openai_compat_test.go b/internal/watcher/diff/openai_compat_test.go index 5683671ae40..536b7ac27f6 100644 --- a/internal/watcher/diff/openai_compat_test.go +++ b/internal/watcher/diff/openai_compat_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" ) func TestDiffOpenAICompatibility(t *testing.T) { diff --git a/internal/watcher/dispatcher.go b/internal/watcher/dispatcher.go index d1602bc1d6e..78f65d22961 100644 --- a/internal/watcher/dispatcher.go +++ b/internal/watcher/dispatcher.go @@ -9,9 +9,9 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher/synthesizer" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher/synthesizer" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) var snapshotCoreAuthsFunc = snapshotCoreAuths diff --git a/internal/watcher/synthesizer/config.go b/internal/watcher/synthesizer/config.go index 83e83d93de8..514922626df 100644 --- a/internal/watcher/synthesizer/config.go +++ b/internal/watcher/synthesizer/config.go @@ -5,11 +5,11 @@ import ( "strconv" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher/diff" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher/diff" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) // ConfigSynthesizer generates Auth entries from configuration API keys. diff --git a/internal/watcher/synthesizer/config_test.go b/internal/watcher/synthesizer/config_test.go index d06619ed413..29641c1bf3e 100644 --- a/internal/watcher/synthesizer/config_test.go +++ b/internal/watcher/synthesizer/config_test.go @@ -4,8 +4,8 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) func TestNewConfigSynthesizer(t *testing.T) { diff --git a/internal/watcher/synthesizer/context.go b/internal/watcher/synthesizer/context.go index dce219c47ca..f5a3c1550bf 100644 --- a/internal/watcher/synthesizer/context.go +++ b/internal/watcher/synthesizer/context.go @@ -4,9 +4,9 @@ import ( "context" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) // PluginAuthParser parses auth JSON owned by plugin providers. diff --git a/internal/watcher/synthesizer/file.go b/internal/watcher/synthesizer/file.go index 2b19759c19e..fb33d3096ac 100644 --- a/internal/watcher/synthesizer/file.go +++ b/internal/watcher/synthesizer/file.go @@ -9,10 +9,10 @@ import ( "strconv" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/codex" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) // FileSynthesizer generates Auth entries from OAuth JSON files. diff --git a/internal/watcher/synthesizer/file_test.go b/internal/watcher/synthesizer/file_test.go index caac1c139e5..89f3756821f 100644 --- a/internal/watcher/synthesizer/file_test.go +++ b/internal/watcher/synthesizer/file_test.go @@ -8,9 +8,9 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func TestNewFileSynthesizer(t *testing.T) { diff --git a/internal/watcher/synthesizer/helpers.go b/internal/watcher/synthesizer/helpers.go index 19b4c896f1d..0dcd9bbd67b 100644 --- a/internal/watcher/synthesizer/helpers.go +++ b/internal/watcher/synthesizer/helpers.go @@ -7,9 +7,9 @@ import ( "sort" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher/diff" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher/diff" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) // StableIDGenerator generates stable, deterministic IDs for auth entries. diff --git a/internal/watcher/synthesizer/helpers_test.go b/internal/watcher/synthesizer/helpers_test.go index 69ba85d60d1..d283aa5e4a7 100644 --- a/internal/watcher/synthesizer/helpers_test.go +++ b/internal/watcher/synthesizer/helpers_test.go @@ -5,9 +5,9 @@ import ( "strings" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher/diff" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher/diff" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) func TestNewStableIDGenerator(t *testing.T) { diff --git a/internal/watcher/synthesizer/interface.go b/internal/watcher/synthesizer/interface.go index e0962c11c9a..e8f072b2f32 100644 --- a/internal/watcher/synthesizer/interface.go +++ b/internal/watcher/synthesizer/interface.go @@ -5,7 +5,7 @@ package synthesizer import ( - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) // AuthSynthesizer defines the interface for generating Auth entries from various sources. diff --git a/internal/watcher/watcher.go b/internal/watcher/watcher.go index af984a5e218..65c17d7bbaf 100644 --- a/internal/watcher/watcher.go +++ b/internal/watcher/watcher.go @@ -9,13 +9,13 @@ import ( "sync/atomic" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher/synthesizer" "github.com/fsnotify/fsnotify" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher/synthesizer" "gopkg.in/yaml.v3" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/internal/watcher/watcher_test.go b/internal/watcher/watcher_test.go index 569c68cccbf..3f4d5815bd2 100644 --- a/internal/watcher/watcher_test.go +++ b/internal/watcher/watcher_test.go @@ -13,13 +13,13 @@ import ( "testing" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/redisqueue" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher/diff" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher/synthesizer" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/fsnotify/fsnotify" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/redisqueue" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher/diff" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher/synthesizer" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" "gopkg.in/yaml.v3" ) diff --git a/sdk/api/handlers/claude/code_handlers.go b/sdk/api/handlers/claude/code_handlers.go index e9bdd600362..4b4b4c3b2b8 100644 --- a/sdk/api/handlers/claude/code_handlers.go +++ b/sdk/api/handlers/claude/code_handlers.go @@ -18,12 +18,12 @@ import ( "strings" "time" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" "github.com/gin-gonic/gin" - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/sdk/api/handlers/claude/code_handlers_error_test.go b/sdk/api/handlers/claude/code_handlers_error_test.go index 5ba9dd061fd..d1617a483a1 100644 --- a/sdk/api/handlers/claude/code_handlers_error_test.go +++ b/sdk/api/handlers/claude/code_handlers_error_test.go @@ -6,8 +6,8 @@ import ( "net/http/httptest" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" "github.com/tidwall/gjson" ) diff --git a/sdk/api/handlers/claude/code_handlers_model_test.go b/sdk/api/handlers/claude/code_handlers_model_test.go index 1dc77d10d7c..8a61fa16595 100644 --- a/sdk/api/handlers/claude/code_handlers_model_test.go +++ b/sdk/api/handlers/claude/code_handlers_model_test.go @@ -5,9 +5,9 @@ import ( "net/http/httptest" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" "github.com/tidwall/gjson" ) diff --git a/sdk/api/handlers/gemini/gemini_handlers.go b/sdk/api/handlers/gemini/gemini_handlers.go index 60aed26a552..6ded8d683d3 100644 --- a/sdk/api/handlers/gemini/gemini_handlers.go +++ b/sdk/api/handlers/gemini/gemini_handlers.go @@ -12,11 +12,11 @@ import ( "strings" "time" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" "github.com/gin-gonic/gin" - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" ) // GeminiAPIHandler contains the handlers for Gemini API endpoints. diff --git a/sdk/api/handlers/gemini/gemini_models_display_name_test.go b/sdk/api/handlers/gemini/gemini_models_display_name_test.go index 3d047bacb09..35769ff482b 100644 --- a/sdk/api/handlers/gemini/gemini_models_display_name_test.go +++ b/sdk/api/handlers/gemini/gemini_models_display_name_test.go @@ -5,9 +5,9 @@ import ( "net/http/httptest" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" ) func TestGeminiModelsResponseUsesConfiguredDisplayName(t *testing.T) { diff --git a/sdk/api/handlers/gemini/interactions_handlers.go b/sdk/api/handlers/gemini/interactions_handlers.go index b05a8c536d0..44aac5ae11e 100644 --- a/sdk/api/handlers/gemini/interactions_handlers.go +++ b/sdk/api/handlers/gemini/interactions_handlers.go @@ -7,10 +7,10 @@ import ( "net/http" "strings" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" "github.com/gin-gonic/gin" - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/sdk/api/handlers/gemini/interactions_handlers_test.go b/sdk/api/handlers/gemini/interactions_handlers_test.go index b5bff42061c..338ce7a8a56 100644 --- a/sdk/api/handlers/gemini/interactions_handlers_test.go +++ b/sdk/api/handlers/gemini/interactions_handlers_test.go @@ -9,15 +9,15 @@ import ( "testing" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" "github.com/tidwall/gjson" ) diff --git a/sdk/api/handlers/handlers.go b/sdk/api/handlers/handlers.go index 92c1f46ce19..d3b2a7c768f 100644 --- a/sdk/api/handlers/handlers.go +++ b/sdk/api/handlers/handlers.go @@ -15,18 +15,18 @@ import ( "sync" "time" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + coreusage "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/usage" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/gin-gonic/gin" - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - coreusage "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/usage" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" "golang.org/x/net/context" ) diff --git a/sdk/api/handlers/handlers_error_response_test.go b/sdk/api/handlers/handlers_error_response_test.go index 0c206e386f6..42a1099b6b7 100644 --- a/sdk/api/handlers/handlers_error_response_test.go +++ b/sdk/api/handlers/handlers_error_response_test.go @@ -8,10 +8,10 @@ import ( "strings" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" ) func TestWriteErrorResponse_AddonHeadersDisabledByDefault(t *testing.T) { diff --git a/sdk/api/handlers/handlers_interceptors_test.go b/sdk/api/handlers/handlers_interceptors_test.go index 7cc309b71e8..462171e1fe1 100644 --- a/sdk/api/handlers/handlers_interceptors_test.go +++ b/sdk/api/handlers/handlers_interceptors_test.go @@ -9,13 +9,13 @@ import ( "sync" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" ) type handlerInterceptorTestHost struct { diff --git a/sdk/api/handlers/handlers_metadata_test.go b/sdk/api/handlers/handlers_metadata_test.go index 24a9130f3d4..22c39cfc11e 100644 --- a/sdk/api/handlers/handlers_metadata_test.go +++ b/sdk/api/handlers/handlers_metadata_test.go @@ -3,7 +3,7 @@ package handlers import ( "testing" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + coreexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" "golang.org/x/net/context" ) diff --git a/sdk/api/handlers/handlers_model_router_test.go b/sdk/api/handlers/handlers_model_router_test.go index f631f1d468b..cc2713d1397 100644 --- a/sdk/api/handlers/handlers_model_router_test.go +++ b/sdk/api/handlers/handlers_model_router_test.go @@ -9,12 +9,12 @@ import ( "testing" "time" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/gin-gonic/gin" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" ) type handlerModelRouterTestHost struct { diff --git a/sdk/api/handlers/handlers_request_details_test.go b/sdk/api/handlers/handlers_request_details_test.go index 574346016a4..6be2f06c8b2 100644 --- a/sdk/api/handlers/handlers_request_details_test.go +++ b/sdk/api/handlers/handlers_request_details_test.go @@ -8,9 +8,9 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" ) func TestGetRequestDetails_PreservesSuffix(t *testing.T) { diff --git a/sdk/api/handlers/handlers_stream_bootstrap_test.go b/sdk/api/handlers/handlers_stream_bootstrap_test.go index 551baac374a..c7594bc5505 100644 --- a/sdk/api/handlers/handlers_stream_bootstrap_test.go +++ b/sdk/api/handlers/handlers_stream_bootstrap_test.go @@ -8,11 +8,11 @@ import ( "sync" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" ) type failOnceStreamExecutor struct { diff --git a/sdk/api/handlers/model_execution.go b/sdk/api/handlers/model_execution.go index 32194f7c615..8ab96800b8b 100644 --- a/sdk/api/handlers/model_execution.go +++ b/sdk/api/handlers/model_execution.go @@ -5,7 +5,7 @@ import ( "net/http" "net/url" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" "golang.org/x/net/context" ) diff --git a/sdk/api/handlers/model_execution_test.go b/sdk/api/handlers/model_execution_test.go index e83337a2153..1dc049ffa2b 100644 --- a/sdk/api/handlers/model_execution_test.go +++ b/sdk/api/handlers/model_execution_test.go @@ -10,14 +10,14 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" ) type modelExecutionCaptureExecutor struct { diff --git a/sdk/api/handlers/openai/codex_client_models.go b/sdk/api/handlers/openai/codex_client_models.go index 351490903ae..89701cd2e23 100644 --- a/sdk/api/handlers/openai/codex_client_models.go +++ b/sdk/api/handlers/openai/codex_client_models.go @@ -6,7 +6,7 @@ import ( "strings" "sync" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" ) type codexClientModelsPayload struct { diff --git a/sdk/api/handlers/openai/codex_client_models_test.go b/sdk/api/handlers/openai/codex_client_models_test.go index b2690eb52c4..ea2a879142e 100644 --- a/sdk/api/handlers/openai/codex_client_models_test.go +++ b/sdk/api/handlers/openai/codex_client_models_test.go @@ -3,7 +3,7 @@ package openai import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" ) func TestCodexClientModelsResponse_InputModalitiesFromRegistry(t *testing.T) { diff --git a/sdk/api/handlers/openai/openai_handlers.go b/sdk/api/handlers/openai/openai_handlers.go index cdb3c6c244f..68615cd46f8 100644 --- a/sdk/api/handlers/openai/openai_handlers.go +++ b/sdk/api/handlers/openai/openai_handlers.go @@ -13,12 +13,12 @@ import ( "net/http" "sync" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + responsesconverter "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/openai/openai/responses" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" "github.com/gin-gonic/gin" - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - responsesconverter "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/openai/openai/responses" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/sdk/api/handlers/openai/openai_images_handlers.go b/sdk/api/handlers/openai/openai_images_handlers.go index 7f65bca1f52..ccd7af303be 100644 --- a/sdk/api/handlers/openai/openai_images_handlers.go +++ b/sdk/api/handlers/openai/openai_images_handlers.go @@ -14,11 +14,11 @@ import ( "strings" "time" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" "github.com/gin-gonic/gin" - internalconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/sdk/api/handlers/openai/openai_images_handlers_test.go b/sdk/api/handlers/openai/openai_images_handlers_test.go index fb67d61098e..15ccadac745 100644 --- a/sdk/api/handlers/openai/openai_images_handlers_test.go +++ b/sdk/api/handlers/openai/openai_images_handlers_test.go @@ -11,11 +11,11 @@ import ( "strings" "testing" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" "github.com/gin-gonic/gin" - internalconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" "github.com/tidwall/gjson" ) diff --git a/sdk/api/handlers/openai/openai_responses_compact_test.go b/sdk/api/handlers/openai/openai_responses_compact_test.go index 4d3b4574d4a..186c3afd591 100644 --- a/sdk/api/handlers/openai/openai_responses_compact_test.go +++ b/sdk/api/handlers/openai/openai_responses_compact_test.go @@ -9,13 +9,13 @@ import ( "strings" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" "github.com/gin-gonic/gin" "github.com/klauspost/compress/zstd" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" ) type compactCaptureExecutor struct { diff --git a/sdk/api/handlers/openai/openai_responses_handlers.go b/sdk/api/handlers/openai/openai_responses_handlers.go index e9063b86dca..988d8fd29bf 100644 --- a/sdk/api/handlers/openai/openai_responses_handlers.go +++ b/sdk/api/handlers/openai/openai_responses_handlers.go @@ -15,11 +15,11 @@ import ( "net/http" "sort" + . "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" "github.com/gin-gonic/gin" - . "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/sdk/api/handlers/openai/openai_responses_handlers_stream_error_test.go b/sdk/api/handlers/openai/openai_responses_handlers_stream_error_test.go index 54d14675891..f5fd2fc29f4 100644 --- a/sdk/api/handlers/openai/openai_responses_handlers_stream_error_test.go +++ b/sdk/api/handlers/openai/openai_responses_handlers_stream_error_test.go @@ -7,10 +7,10 @@ import ( "strings" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" ) func TestForwardResponsesStreamTerminalErrorUsesResponsesErrorChunk(t *testing.T) { diff --git a/sdk/api/handlers/openai/openai_responses_handlers_stream_test.go b/sdk/api/handlers/openai/openai_responses_handlers_stream_test.go index 0742b9b3d38..0f142c6980b 100644 --- a/sdk/api/handlers/openai/openai_responses_handlers_stream_test.go +++ b/sdk/api/handlers/openai/openai_responses_handlers_stream_test.go @@ -6,10 +6,10 @@ import ( "strings" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" "github.com/tidwall/gjson" ) diff --git a/sdk/api/handlers/openai/openai_responses_signature_test.go b/sdk/api/handlers/openai/openai_responses_signature_test.go index 7bb610ae725..803a1286421 100644 --- a/sdk/api/handlers/openai/openai_responses_signature_test.go +++ b/sdk/api/handlers/openai/openai_responses_signature_test.go @@ -7,11 +7,11 @@ import ( "strings" "testing" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" ) func TestOpenAIResponsesForwardsInvalidReasoningEncryptedContentToExecutor(t *testing.T) { diff --git a/sdk/api/handlers/openai/openai_responses_websocket.go b/sdk/api/handlers/openai/openai_responses_websocket.go index d9cd1190324..9a3a0583989 100644 --- a/sdk/api/handlers/openai/openai_responses_websocket.go +++ b/sdk/api/handlers/openai/openai_responses_websocket.go @@ -12,17 +12,17 @@ import ( "strings" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + requestlogging "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" "github.com/gin-gonic/gin" "github.com/google/uuid" "github.com/gorilla/websocket" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - requestlogging "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/sdk/api/handlers/openai/openai_responses_websocket_test.go b/sdk/api/handlers/openai/openai_responses_websocket_test.go index 4cd522e4de6..1eb11c64615 100644 --- a/sdk/api/handlers/openai/openai_responses_websocket_test.go +++ b/sdk/api/handlers/openai/openai_responses_websocket_test.go @@ -12,15 +12,15 @@ import ( "testing" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + requestlogging "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" "github.com/gin-gonic/gin" "github.com/gorilla/websocket" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - requestlogging "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" "github.com/tidwall/gjson" ) diff --git a/sdk/api/handlers/openai/openai_videos_handlers.go b/sdk/api/handlers/openai/openai_videos_handlers.go index e891dbe2de0..1b3d6dae94c 100644 --- a/sdk/api/handlers/openai/openai_videos_handlers.go +++ b/sdk/api/handlers/openai/openai_videos_handlers.go @@ -12,13 +12,13 @@ import ( "sync" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor/helps" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" "github.com/gin-gonic/gin" "github.com/google/uuid" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor/helps" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" "github.com/tidwall/sjson" diff --git a/sdk/api/handlers/openai/openai_videos_handlers_test.go b/sdk/api/handlers/openai/openai_videos_handlers_test.go index 52f6ca09249..8c321a25d32 100644 --- a/sdk/api/handlers/openai/openai_videos_handlers_test.go +++ b/sdk/api/handlers/openai/openai_videos_handlers_test.go @@ -11,12 +11,12 @@ import ( "testing" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + apihandlers "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdkconfig "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - apihandlers "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - coreexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdkconfig "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" "github.com/tidwall/gjson" ) diff --git a/sdk/api/handlers/stream_forwarder.go b/sdk/api/handlers/stream_forwarder.go index 63ddc31e43d..9a6e54ba441 100644 --- a/sdk/api/handlers/stream_forwarder.go +++ b/sdk/api/handlers/stream_forwarder.go @@ -4,8 +4,8 @@ import ( "net/http" "time" + "github.com/awsl-project/CLIProxyAPI/v7/internal/interfaces" "github.com/gin-gonic/gin" - "github.com/router-for-me/CLIProxyAPI/v7/internal/interfaces" ) type StreamForwardOptions struct { diff --git a/sdk/api/management.go b/sdk/api/management.go index 8a03909af46..c1d592d7c1b 100644 --- a/sdk/api/management.go +++ b/sdk/api/management.go @@ -7,10 +7,10 @@ package api import ( "context" + internalmanagement "github.com/awsl-project/CLIProxyAPI/v7/internal/api/handlers/management" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" "github.com/gin-gonic/gin" - internalmanagement "github.com/router-for-me/CLIProxyAPI/v7/internal/api/handlers/management" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" ) // Handler re-exports the management handler used by the internal HTTP API. diff --git a/sdk/api/options.go b/sdk/api/options.go index e2bbff78e9f..33eaa2c22c2 100644 --- a/sdk/api/options.go +++ b/sdk/api/options.go @@ -7,11 +7,11 @@ package api import ( "time" + internalapi "github.com/awsl-project/CLIProxyAPI/v7/internal/api" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/api/handlers" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/logging" "github.com/gin-gonic/gin" - internalapi "github.com/router-for-me/CLIProxyAPI/v7/internal/api" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/api/handlers" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/logging" ) // ServerOption customises HTTP server construction. diff --git a/sdk/auth/antigravity.go b/sdk/auth/antigravity.go index ee41cbdbd25..2f76044ca74 100644 --- a/sdk/auth/antigravity.go +++ b/sdk/auth/antigravity.go @@ -8,12 +8,12 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/antigravity" - "github.com/router-for-me/CLIProxyAPI/v7/internal/browser" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/antigravity" + "github.com/awsl-project/CLIProxyAPI/v7/internal/browser" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/sdk/auth/claude.go b/sdk/auth/claude.go index 726fa922ae9..1c71da5af90 100644 --- a/sdk/auth/claude.go +++ b/sdk/auth/claude.go @@ -7,13 +7,13 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/claude" - "github.com/router-for-me/CLIProxyAPI/v7/internal/browser" + "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/claude" + "github.com/awsl-project/CLIProxyAPI/v7/internal/browser" // legacy client removed - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/sdk/auth/codex.go b/sdk/auth/codex.go index be58c9c5a60..4ed7d8a56fa 100644 --- a/sdk/auth/codex.go +++ b/sdk/auth/codex.go @@ -7,13 +7,13 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v7/internal/browser" + "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/codex" + "github.com/awsl-project/CLIProxyAPI/v7/internal/browser" // legacy client removed - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/sdk/auth/codex_device.go b/sdk/auth/codex_device.go index d7ea4e1fe93..a83ed201ffd 100644 --- a/sdk/auth/codex_device.go +++ b/sdk/auth/codex_device.go @@ -13,11 +13,11 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/codex" - "github.com/router-for-me/CLIProxyAPI/v7/internal/browser" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/codex" + "github.com/awsl-project/CLIProxyAPI/v7/internal/browser" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/sdk/auth/filestore.go b/sdk/auth/filestore.go index 3f0f608ca82..346399830c2 100644 --- a/sdk/auth/filestore.go +++ b/sdk/auth/filestore.go @@ -14,8 +14,8 @@ import ( "sync/atomic" "time" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) // PluginAuthParser parses auth JSON owned by plugin providers. diff --git a/sdk/auth/filestore_disabled_test.go b/sdk/auth/filestore_disabled_test.go index 665f9ebf1f0..ac1ba44f980 100644 --- a/sdk/auth/filestore_disabled_test.go +++ b/sdk/auth/filestore_disabled_test.go @@ -7,7 +7,7 @@ import ( "path/filepath" "testing" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) type testTokenStorage struct { diff --git a/sdk/auth/filestore_test.go b/sdk/auth/filestore_test.go index fe552ad27c7..6f5b8991805 100644 --- a/sdk/auth/filestore_test.go +++ b/sdk/auth/filestore_test.go @@ -6,8 +6,8 @@ import ( "path/filepath" "testing" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) func TestExtractAccessToken(t *testing.T) { diff --git a/sdk/auth/interfaces.go b/sdk/auth/interfaces.go index e5582a0cc55..91a492ba3e7 100644 --- a/sdk/auth/interfaces.go +++ b/sdk/auth/interfaces.go @@ -5,8 +5,8 @@ import ( "errors" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) var ErrRefreshNotSupported = errors.New("cliproxy auth: refresh not supported") diff --git a/sdk/auth/kimi.go b/sdk/auth/kimi.go index 4dbff1e87e3..caaa492e7b9 100644 --- a/sdk/auth/kimi.go +++ b/sdk/auth/kimi.go @@ -6,10 +6,10 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/kimi" - "github.com/router-for-me/CLIProxyAPI/v7/internal/browser" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/kimi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/browser" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/sdk/auth/manager.go b/sdk/auth/manager.go index bceb5e196da..a51fddea0b2 100644 --- a/sdk/auth/manager.go +++ b/sdk/auth/manager.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) // Manager aggregates authenticators and coordinates persistence via a token store. diff --git a/sdk/auth/refresh_registry.go b/sdk/auth/refresh_registry.go index e2c0aba9e69..d8f40e01362 100644 --- a/sdk/auth/refresh_registry.go +++ b/sdk/auth/refresh_registry.go @@ -3,7 +3,7 @@ package auth import ( "time" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) func init() { diff --git a/sdk/auth/store_registry.go b/sdk/auth/store_registry.go index 1971947bc81..0c107344aaf 100644 --- a/sdk/auth/store_registry.go +++ b/sdk/auth/store_registry.go @@ -3,7 +3,7 @@ package auth import ( "sync" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) var ( diff --git a/sdk/auth/xai.go b/sdk/auth/xai.go index 039878b2432..f349316f37a 100644 --- a/sdk/auth/xai.go +++ b/sdk/auth/xai.go @@ -6,10 +6,10 @@ import ( "strings" "time" - xaiauth "github.com/router-for-me/CLIProxyAPI/v7/internal/auth/xai" - "github.com/router-for-me/CLIProxyAPI/v7/internal/browser" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + xaiauth "github.com/awsl-project/CLIProxyAPI/v7/internal/auth/xai" + "github.com/awsl-project/CLIProxyAPI/v7/internal/browser" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" log "github.com/sirupsen/logrus" ) diff --git a/sdk/cliproxy/antigravity_models.go b/sdk/cliproxy/antigravity_models.go index 11f7c408d9a..00fddce4395 100644 --- a/sdk/cliproxy/antigravity_models.go +++ b/sdk/cliproxy/antigravity_models.go @@ -7,9 +7,9 @@ import ( "net/http" "strings" - "github.com/router-for-me/CLIProxyAPI/v7/internal/misc" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/proxyutil" + "github.com/awsl-project/CLIProxyAPI/v7/internal/misc" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/proxyutil" log "github.com/sirupsen/logrus" ) diff --git a/sdk/cliproxy/auth/antigravity_credits.go b/sdk/cliproxy/auth/antigravity_credits.go index 6b9480b6333..9966d3be4bb 100644 --- a/sdk/cliproxy/auth/antigravity_credits.go +++ b/sdk/cliproxy/auth/antigravity_credits.go @@ -6,7 +6,7 @@ import ( "sync" "time" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" ) type antigravityUseCreditsContextKey struct{} diff --git a/sdk/cliproxy/auth/antigravity_credits_test.go b/sdk/cliproxy/auth/antigravity_credits_test.go index 52754095cc3..fb068441fd8 100644 --- a/sdk/cliproxy/auth/antigravity_credits_test.go +++ b/sdk/cliproxy/auth/antigravity_credits_test.go @@ -8,10 +8,10 @@ import ( "testing" "time" - internalconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" 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 a05bf623006..8fe29a64e0f 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/v7/internal/config" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" ) func TestLookupAPIKeyUpstreamModel(t *testing.T) { diff --git a/sdk/cliproxy/auth/conductor.go b/sdk/cliproxy/auth/conductor.go index e9157e3e691..56beae8690b 100644 --- a/sdk/cliproxy/auth/conductor.go +++ b/sdk/cliproxy/auth/conductor.go @@ -17,17 +17,17 @@ import ( "sync/atomic" "time" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/home" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + coreusage "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/usage" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/google/uuid" - internalconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/home" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - coreusage "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/usage" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" log "github.com/sirupsen/logrus" "github.com/tidwall/sjson" ) diff --git a/sdk/cliproxy/auth/conductor_availability_test.go b/sdk/cliproxy/auth/conductor_availability_test.go index 7e07cc07148..2b75e7e2f85 100644 --- a/sdk/cliproxy/auth/conductor_availability_test.go +++ b/sdk/cliproxy/auth/conductor_availability_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" ) func TestUpdateAggregatedAvailability_UnavailableWithoutNextRetryDoesNotBlockAuth(t *testing.T) { diff --git a/sdk/cliproxy/auth/conductor_credits_candidates_test.go b/sdk/cliproxy/auth/conductor_credits_candidates_test.go index ade8e6b4b44..45595df9054 100644 --- a/sdk/cliproxy/auth/conductor_credits_candidates_test.go +++ b/sdk/cliproxy/auth/conductor_credits_candidates_test.go @@ -7,9 +7,9 @@ import ( "testing" "time" - internalconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - homekv "github.com/router-for-me/CLIProxyAPI/v7/internal/home" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + homekv "github.com/awsl-project/CLIProxyAPI/v7/internal/home" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" ) func TestFindAllAntigravityCreditsCandidateAuths_PrefersKnownCreditsThenUnknown(t *testing.T) { diff --git a/sdk/cliproxy/auth/conductor_executor_replace_test.go b/sdk/cliproxy/auth/conductor_executor_replace_test.go index 99ecf466a6e..d8f8e05840c 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/v7/sdk/cliproxy/executor" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" ) type replaceAwareExecutor struct { diff --git a/sdk/cliproxy/auth/conductor_force_mapping_test.go b/sdk/cliproxy/auth/conductor_force_mapping_test.go index ce6cf915f32..f390dc6e4d0 100644 --- a/sdk/cliproxy/auth/conductor_force_mapping_test.go +++ b/sdk/cliproxy/auth/conductor_force_mapping_test.go @@ -7,9 +7,9 @@ import ( "sync" "testing" - internalconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" ) type forceMappingExecutor struct { diff --git a/sdk/cliproxy/auth/conductor_oauth_alias_suspension_test.go b/sdk/cliproxy/auth/conductor_oauth_alias_suspension_test.go index ba8371dc61e..ccd8690fd29 100644 --- a/sdk/cliproxy/auth/conductor_oauth_alias_suspension_test.go +++ b/sdk/cliproxy/auth/conductor_oauth_alias_suspension_test.go @@ -7,10 +7,10 @@ import ( "testing" "time" - internalconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - coreusage "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/usage" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + coreusage "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/usage" ) type aliasRoutingExecutor struct { diff --git a/sdk/cliproxy/auth/conductor_overrides_test.go b/sdk/cliproxy/auth/conductor_overrides_test.go index 3123e32d4eb..df0eb9904fd 100644 --- a/sdk/cliproxy/auth/conductor_overrides_test.go +++ b/sdk/cliproxy/auth/conductor_overrides_test.go @@ -7,10 +7,10 @@ import ( "testing" "time" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" "github.com/google/uuid" - internalconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" ) const requestScopedNotFoundMessage = "Item with id 'rs_0b5f3eb6f51f175c0169ca74e4a85881998539920821603a74' not found. Items are not persisted when `store` is set to false. Try again with `store` set to true, or remove this item from your input." diff --git a/sdk/cliproxy/auth/conductor_scheduler_refresh_test.go b/sdk/cliproxy/auth/conductor_scheduler_refresh_test.go index 8ccae636a53..7137e95a426 100644 --- a/sdk/cliproxy/auth/conductor_scheduler_refresh_test.go +++ b/sdk/cliproxy/auth/conductor_scheduler_refresh_test.go @@ -7,8 +7,8 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" ) type schedulerProviderTestExecutor struct { diff --git a/sdk/cliproxy/auth/conductor_unauthorized_refresh_test.go b/sdk/cliproxy/auth/conductor_unauthorized_refresh_test.go index 37451925076..e6b416a27f0 100644 --- a/sdk/cliproxy/auth/conductor_unauthorized_refresh_test.go +++ b/sdk/cliproxy/auth/conductor_unauthorized_refresh_test.go @@ -6,8 +6,8 @@ import ( "sync" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" ) type unauthorizedRefreshExecutor struct { diff --git a/sdk/cliproxy/auth/conductor_usage_test.go b/sdk/cliproxy/auth/conductor_usage_test.go index af6c1ee237e..9c61e160c4f 100644 --- a/sdk/cliproxy/auth/conductor_usage_test.go +++ b/sdk/cliproxy/auth/conductor_usage_test.go @@ -4,8 +4,8 @@ import ( "context" "testing" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - coreusage "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/usage" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + coreusage "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/usage" ) func TestContextWithRequestedModelAliasIncludesReasoningEffort(t *testing.T) { diff --git a/sdk/cliproxy/auth/error_events.go b/sdk/cliproxy/auth/error_events.go index d9e650f003d..19efe41926b 100644 --- a/sdk/cliproxy/auth/error_events.go +++ b/sdk/cliproxy/auth/error_events.go @@ -5,7 +5,7 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/redisqueue" + "github.com/awsl-project/CLIProxyAPI/v7/internal/redisqueue" ) type errorEvent struct { diff --git a/sdk/cliproxy/auth/error_events_test.go b/sdk/cliproxy/auth/error_events_test.go index 33afca879c9..0f38fc48b7a 100644 --- a/sdk/cliproxy/auth/error_events_test.go +++ b/sdk/cliproxy/auth/error_events_test.go @@ -7,8 +7,8 @@ import ( "testing" "time" - internalconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/redisqueue" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/redisqueue" ) func TestManagerMarkResultPublishesErrorEventAfterAuthStateUpdate(t *testing.T) { diff --git a/sdk/cliproxy/auth/home_retry_loop_test.go b/sdk/cliproxy/auth/home_retry_loop_test.go index 16f6e824bde..eb72382fde3 100644 --- a/sdk/cliproxy/auth/home_retry_loop_test.go +++ b/sdk/cliproxy/auth/home_retry_loop_test.go @@ -8,8 +8,8 @@ import ( "testing" "time" - internalconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" ) type repeatedHomeAuthDispatcher struct { diff --git a/sdk/cliproxy/auth/home_websocket_reuse_test.go b/sdk/cliproxy/auth/home_websocket_reuse_test.go index 1565b13c114..233f7832246 100644 --- a/sdk/cliproxy/auth/home_websocket_reuse_test.go +++ b/sdk/cliproxy/auth/home_websocket_reuse_test.go @@ -6,8 +6,8 @@ import ( "net/http" "testing" - internalconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" ) func TestPickNextViaHomeReusesPinnedWebsocketAuthWithoutHomeDispatch(t *testing.T) { diff --git a/sdk/cliproxy/auth/oauth_model_alias.go b/sdk/cliproxy/auth/oauth_model_alias.go index 25b8a2ead31..49f3c6c5998 100644 --- a/sdk/cliproxy/auth/oauth_model_alias.go +++ b/sdk/cliproxy/auth/oauth_model_alias.go @@ -4,8 +4,8 @@ import ( "encoding/json" "strings" - internalconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" ) const oauthModelAliasesAttributeKey = "model_aliases" diff --git a/sdk/cliproxy/auth/oauth_model_alias_test.go b/sdk/cliproxy/auth/oauth_model_alias_test.go index e329b525303..8a5cf9deedd 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/v7/internal/config" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" ) func TestResolveOAuthUpstreamModel_SuffixPreservation(t *testing.T) { diff --git a/sdk/cliproxy/auth/openai_compat_pool_test.go b/sdk/cliproxy/auth/openai_compat_pool_test.go index d421a9e88c9..251c24eed94 100644 --- a/sdk/cliproxy/auth/openai_compat_pool_test.go +++ b/sdk/cliproxy/auth/openai_compat_pool_test.go @@ -7,9 +7,9 @@ import ( "sync" "testing" - internalconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" ) const openAICompatPoolProviderKey = "openai-compatible-pool" diff --git a/sdk/cliproxy/auth/request_auth_prepare_test.go b/sdk/cliproxy/auth/request_auth_prepare_test.go index ccdedee0b81..e879026eb7f 100644 --- a/sdk/cliproxy/auth/request_auth_prepare_test.go +++ b/sdk/cliproxy/auth/request_auth_prepare_test.go @@ -8,8 +8,8 @@ import ( "sync/atomic" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" ) type requestPrepareStore struct { diff --git a/sdk/cliproxy/auth/response_model_rewriter_antigravity_sim_test.go b/sdk/cliproxy/auth/response_model_rewriter_antigravity_sim_test.go index 29be9243f68..a18b766b53b 100644 --- a/sdk/cliproxy/auth/response_model_rewriter_antigravity_sim_test.go +++ b/sdk/cliproxy/auth/response_model_rewriter_antigravity_sim_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - gemresponses "github.com/router-for-me/CLIProxyAPI/v7/internal/translator/gemini/openai/responses" + gemresponses "github.com/awsl-project/CLIProxyAPI/v7/internal/translator/gemini/openai/responses" "github.com/tidwall/gjson" ) diff --git a/sdk/cliproxy/auth/response_model_rewriter_test.go b/sdk/cliproxy/auth/response_model_rewriter_test.go index 751744ef273..2df2f085567 100644 --- a/sdk/cliproxy/auth/response_model_rewriter_test.go +++ b/sdk/cliproxy/auth/response_model_rewriter_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" ) func TestStreamRewriter_RewriteChunk_KimiMessagesDataPrefixWithoutSpace(t *testing.T) { diff --git a/sdk/cliproxy/auth/scheduler.go b/sdk/cliproxy/auth/scheduler.go index 8c864221176..627fb238fb2 100644 --- a/sdk/cliproxy/auth/scheduler.go +++ b/sdk/cliproxy/auth/scheduler.go @@ -7,8 +7,8 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" ) // schedulerStrategy identifies which built-in routing semantics the scheduler should apply. diff --git a/sdk/cliproxy/auth/scheduler_benchmark_test.go b/sdk/cliproxy/auth/scheduler_benchmark_test.go index 4d160276f23..7dc5a667b4b 100644 --- a/sdk/cliproxy/auth/scheduler_benchmark_test.go +++ b/sdk/cliproxy/auth/scheduler_benchmark_test.go @@ -6,8 +6,8 @@ import ( "net/http" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" ) type schedulerBenchmarkExecutor struct { diff --git a/sdk/cliproxy/auth/scheduler_test.go b/sdk/cliproxy/auth/scheduler_test.go index 99f4f9dc77e..9284d80c825 100644 --- a/sdk/cliproxy/auth/scheduler_test.go +++ b/sdk/cliproxy/auth/scheduler_test.go @@ -7,10 +7,10 @@ import ( "testing" "time" - internalconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) type schedulerTestExecutor struct{} diff --git a/sdk/cliproxy/auth/selector.go b/sdk/cliproxy/auth/selector.go index b7610865334..983f3d82681 100644 --- a/sdk/cliproxy/auth/selector.go +++ b/sdk/cliproxy/auth/selector.go @@ -17,9 +17,9 @@ import ( log "github.com/sirupsen/logrus" "github.com/tidwall/gjson" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/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 4896422b4f6..d82f3035caa 100644 --- a/sdk/cliproxy/auth/selector_test.go +++ b/sdk/cliproxy/auth/selector_test.go @@ -11,7 +11,7 @@ import ( "testing" "time" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" ) func TestFillFirstSelectorPick_Deterministic(t *testing.T) { diff --git a/sdk/cliproxy/auth/types.go b/sdk/cliproxy/auth/types.go index 88f6c04fab7..b683564788b 100644 --- a/sdk/cliproxy/auth/types.go +++ b/sdk/cliproxy/auth/types.go @@ -13,7 +13,7 @@ import ( "sync" "time" - baseauth "github.com/router-for-me/CLIProxyAPI/v7/internal/auth" + baseauth "github.com/awsl-project/CLIProxyAPI/v7/internal/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 24ac43c3377..a90dc29a9d9 100644 --- a/sdk/cliproxy/builder.go +++ b/sdk/cliproxy/builder.go @@ -9,14 +9,14 @@ import ( "strings" "time" - configaccess "github.com/router-for-me/CLIProxyAPI/v7/internal/access/config_access" - "github.com/router-for-me/CLIProxyAPI/v7/internal/api" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginhost" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v7/sdk/access" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" + configaccess "github.com/awsl-project/CLIProxyAPI/v7/internal/access/config_access" + "github.com/awsl-project/CLIProxyAPI/v7/internal/api" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginhost" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher" + sdkaccess "github.com/awsl-project/CLIProxyAPI/v7/sdk/access" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" ) // Builder constructs a Service instance with customizable providers. diff --git a/sdk/cliproxy/config_model_display_name_test.go b/sdk/cliproxy/config_model_display_name_test.go index 452dbae1a31..a4ef78954c4 100644 --- a/sdk/cliproxy/config_model_display_name_test.go +++ b/sdk/cliproxy/config_model_display_name_test.go @@ -3,7 +3,7 @@ package cliproxy import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" ) func TestBuildConfigModelsDisplayName(t *testing.T) { diff --git a/sdk/cliproxy/executor/types.go b/sdk/cliproxy/executor/types.go index ae3f18817be..a97b1cd5565 100644 --- a/sdk/cliproxy/executor/types.go +++ b/sdk/cliproxy/executor/types.go @@ -5,7 +5,7 @@ import ( "net/http" "net/url" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" ) // RequestedModelMetadataKey stores the client-requested model name in Options.Metadata. diff --git a/sdk/cliproxy/executor/types_test.go b/sdk/cliproxy/executor/types_test.go index 431272a8cdd..97c2401962e 100644 --- a/sdk/cliproxy/executor/types_test.go +++ b/sdk/cliproxy/executor/types_test.go @@ -3,7 +3,7 @@ package executor import ( "testing" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" ) func TestResponseFormatOrSourceUsesExplicitResponseFormat(t *testing.T) { diff --git a/sdk/cliproxy/home_plugins.go b/sdk/cliproxy/home_plugins.go index 813165c39e0..934b6c6454d 100644 --- a/sdk/cliproxy/home_plugins.go +++ b/sdk/cliproxy/home_plugins.go @@ -10,9 +10,9 @@ import ( "strings" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/home" - "github.com/router-for-me/CLIProxyAPI/v7/internal/homeplugins" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/home" + "github.com/awsl-project/CLIProxyAPI/v7/internal/homeplugins" log "github.com/sirupsen/logrus" "gopkg.in/yaml.v3" ) diff --git a/sdk/cliproxy/home_plugins_test.go b/sdk/cliproxy/home_plugins_test.go index f9c84a0776a..99295e33fd0 100644 --- a/sdk/cliproxy/home_plugins_test.go +++ b/sdk/cliproxy/home_plugins_test.go @@ -4,8 +4,8 @@ import ( "context" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/home" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/home" "gopkg.in/yaml.v3" ) diff --git a/sdk/cliproxy/model_registry.go b/sdk/cliproxy/model_registry.go index 9cb928c98a3..e636ead58ed 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/v7/internal/registry" +import "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" // ModelInfo re-exports the registry model info structure. type ModelInfo = registry.ModelInfo diff --git a/sdk/cliproxy/openai_compat_config_models_test.go b/sdk/cliproxy/openai_compat_config_models_test.go index 74ca453c4c2..0d1f2f6d2c6 100644 --- a/sdk/cliproxy/openai_compat_config_models_test.go +++ b/sdk/cliproxy/openai_compat_config_models_test.go @@ -3,8 +3,8 @@ package cliproxy import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" ) func TestBuildOpenAICompatibilityConfigModels_InputModalities(t *testing.T) { diff --git a/sdk/cliproxy/pipeline/context.go b/sdk/cliproxy/pipeline/context.go index 4cffb0b4d9b..e1fae1069aa 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/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/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 ec30b4bef36..db225a3a4bc 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/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" log "github.com/sirupsen/logrus" ) diff --git a/sdk/cliproxy/providers.go b/sdk/cliproxy/providers.go index 2776d05688f..6f9b6318c71 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/v7/internal/watcher" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" ) // NewFileTokenClientProvider returns the default token-backed client loader. diff --git a/sdk/cliproxy/rtprovider.go b/sdk/cliproxy/rtprovider.go index d07b4cb4f97..0cbde032e70 100644 --- a/sdk/cliproxy/rtprovider.go +++ b/sdk/cliproxy/rtprovider.go @@ -5,8 +5,8 @@ import ( "strings" "sync" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/proxyutil" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/proxyutil" log "github.com/sirupsen/logrus" ) diff --git a/sdk/cliproxy/rtprovider_test.go b/sdk/cliproxy/rtprovider_test.go index 6ea08432c13..a490d491168 100644 --- a/sdk/cliproxy/rtprovider_test.go +++ b/sdk/cliproxy/rtprovider_test.go @@ -4,7 +4,7 @@ import ( "net/http" "testing" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" ) func TestRoundTripperForDirectBypassesProxy(t *testing.T) { diff --git a/sdk/cliproxy/service.go b/sdk/cliproxy/service.go index 61c6dad812d..6ffd8724434 100644 --- a/sdk/cliproxy/service.go +++ b/sdk/cliproxy/service.go @@ -12,26 +12,26 @@ import ( "sync" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/api" - "github.com/router-for-me/CLIProxyAPI/v7/internal/constant" - "github.com/router-for-me/CLIProxyAPI/v7/internal/home" - "github.com/router-for-me/CLIProxyAPI/v7/internal/homeplugins" - "github.com/router-for-me/CLIProxyAPI/v7/internal/logging" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginhost" - "github.com/router-for-me/CLIProxyAPI/v7/internal/redisqueue" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor" - "github.com/router-for-me/CLIProxyAPI/v7/internal/util" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher/diff" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher/synthesizer" - "github.com/router-for-me/CLIProxyAPI/v7/internal/wsrelay" - sdkaccess "github.com/router-for-me/CLIProxyAPI/v7/sdk/access" - sdkAuth "github.com/router-for-me/CLIProxyAPI/v7/sdk/auth" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/usage" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/api" + "github.com/awsl-project/CLIProxyAPI/v7/internal/constant" + "github.com/awsl-project/CLIProxyAPI/v7/internal/home" + "github.com/awsl-project/CLIProxyAPI/v7/internal/homeplugins" + "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginhost" + "github.com/awsl-project/CLIProxyAPI/v7/internal/redisqueue" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor" + "github.com/awsl-project/CLIProxyAPI/v7/internal/util" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher/diff" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher/synthesizer" + "github.com/awsl-project/CLIProxyAPI/v7/internal/wsrelay" + sdkaccess "github.com/awsl-project/CLIProxyAPI/v7/sdk/access" + sdkAuth "github.com/awsl-project/CLIProxyAPI/v7/sdk/auth" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/usage" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" 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 0cd399ef297..db96b0c128b 100644 --- a/sdk/cliproxy/service_codex_executor_binding_test.go +++ b/sdk/cliproxy/service_codex_executor_binding_test.go @@ -3,9 +3,9 @@ package cliproxy import ( "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/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 c176d9daa80..7ee10a0b9eb 100644 --- a/sdk/cliproxy/service_excluded_models_test.go +++ b/sdk/cliproxy/service_excluded_models_test.go @@ -7,9 +7,9 @@ import ( "strings" "testing" - internalregistry "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" + internalregistry "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" ) func TestRegisterModelsForAuth_UsesPreMergedExcludedModelsAttribute(t *testing.T) { diff --git a/sdk/cliproxy/service_executor_registration_test.go b/sdk/cliproxy/service_executor_registration_test.go index 11d997d6d1d..6c857281404 100644 --- a/sdk/cliproxy/service_executor_registration_test.go +++ b/sdk/cliproxy/service_executor_registration_test.go @@ -5,11 +5,11 @@ import ( "net/http" "testing" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginhost" - runtimeexecutor "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginhost" + runtimeexecutor "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" ) type serviceTestPluginExecutor struct{} diff --git a/sdk/cliproxy/service_oauth_model_alias_test.go b/sdk/cliproxy/service_oauth_model_alias_test.go index df77cfa4aa8..eb2e0e00760 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/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" ) func TestApplyOAuthModelAlias_Rename(t *testing.T) { diff --git a/sdk/cliproxy/service_plugin_executor_test.go b/sdk/cliproxy/service_plugin_executor_test.go index c751cbe2557..2f1556ef1df 100644 --- a/sdk/cliproxy/service_plugin_executor_test.go +++ b/sdk/cliproxy/service_plugin_executor_test.go @@ -3,8 +3,8 @@ package cliproxy import ( "testing" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" ) func TestHasNativeOpenAICompatExecutorConfig(t *testing.T) { diff --git a/sdk/cliproxy/service_plugin_scheduler_test.go b/sdk/cliproxy/service_plugin_scheduler_test.go index d80c75b1368..e8eb6a33b28 100644 --- a/sdk/cliproxy/service_plugin_scheduler_test.go +++ b/sdk/cliproxy/service_plugin_scheduler_test.go @@ -6,9 +6,9 @@ import ( "testing" "unsafe" - "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginhost" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginhost" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" ) func TestBuilderBuildInjectsPluginHostScheduler(t *testing.T) { diff --git a/sdk/cliproxy/service_stale_state_test.go b/sdk/cliproxy/service_stale_state_test.go index 094e9df0b07..e873912b804 100644 --- a/sdk/cliproxy/service_stale_state_test.go +++ b/sdk/cliproxy/service_stale_state_test.go @@ -5,9 +5,9 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" ) func TestServiceApplyCoreAuthAddOrUpdate_DeleteReAddDoesNotInheritStaleRuntimeState(t *testing.T) { diff --git a/sdk/cliproxy/types.go b/sdk/cliproxy/types.go index dfde6d9c1fe..09e74f9100f 100644 --- a/sdk/cliproxy/types.go +++ b/sdk/cliproxy/types.go @@ -6,10 +6,10 @@ package cliproxy import ( "context" - "github.com/router-for-me/CLIProxyAPI/v7/internal/watcher" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" ) // TokenClientProvider loads clients backed by stored authentication tokens. diff --git a/sdk/cliproxy/watcher.go b/sdk/cliproxy/watcher.go index 886b55646d7..b0368f4e279 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/v7/internal/watcher" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/watcher" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/config" ) func defaultWatcherFactory(configPath, authDir string, reload func(*config.Config)) (*WatcherWrapper, error) { diff --git a/sdk/config/config.go b/sdk/config/config.go index c7ec3c5b9f0..f8c637130b2 100644 --- a/sdk/config/config.go +++ b/sdk/config/config.go @@ -4,7 +4,7 @@ // embed CLIProxyAPI without importing internal packages. package config -import internalconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" +import internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" type SDKConfig = internalconfig.SDKConfig diff --git a/sdk/exec/antigravity.go b/sdk/exec/antigravity.go index 9258ed1e306..5f7c160b6ef 100644 --- a/sdk/exec/antigravity.go +++ b/sdk/exec/antigravity.go @@ -3,11 +3,11 @@ package exec import ( - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - internal "github.com/router-for-me/CLIProxyAPI/v6/internal/runtime/executor" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + internal "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor" // Import builtin to register translators (claude -> antigravity, etc.) - _ "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator/builtin" + _ "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator/builtin" ) // AntigravityExecutor is a type alias for the internal AntigravityExecutor. diff --git a/sdk/exec/codex.go b/sdk/exec/codex.go index 621737584fc..e65555e7536 100644 --- a/sdk/exec/codex.go +++ b/sdk/exec/codex.go @@ -5,8 +5,8 @@ package exec import ( - "github.com/router-for-me/CLIProxyAPI/v6/internal/config" - internal "github.com/router-for-me/CLIProxyAPI/v6/internal/runtime/executor" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + internal "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor" ) // CodexExecutor is a type alias for the internal CodexExecutor. diff --git a/sdk/logging/request_logger.go b/sdk/logging/request_logger.go index 5f8cf754e16..95733831776 100644 --- a/sdk/logging/request_logger.go +++ b/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/v7/internal/logging" +import internallogging "github.com/awsl-project/CLIProxyAPI/v7/internal/logging" const defaultErrorLogsMaxFiles = 10 diff --git a/sdk/pluginhost/host.go b/sdk/pluginhost/host.go index 1d471d9f3ef..97b72c35d56 100644 --- a/sdk/pluginhost/host.go +++ b/sdk/pluginhost/host.go @@ -3,11 +3,11 @@ package pluginhost import ( "context" - internalconfig "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - internalpluginhost "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginhost" - internalregistry "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - coreauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - "github.com/router-for-me/CLIProxyAPI/v7/sdk/pluginapi" + internalconfig "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + internalpluginhost "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginhost" + internalregistry "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + coreauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + "github.com/awsl-project/CLIProxyAPI/v7/sdk/pluginapi" "gopkg.in/yaml.v3" ) diff --git a/sdk/pluginstore/pluginstore.go b/sdk/pluginstore/pluginstore.go index 74841bf59f8..da0ab1b2f6c 100644 --- a/sdk/pluginstore/pluginstore.go +++ b/sdk/pluginstore/pluginstore.go @@ -7,7 +7,7 @@ import ( "net/http" "strings" - internalpluginstore "github.com/router-for-me/CLIProxyAPI/v7/internal/pluginstore" + internalpluginstore "github.com/awsl-project/CLIProxyAPI/v7/internal/pluginstore" ) const ( diff --git a/sdk/translator/builtin/builtin.go b/sdk/translator/builtin/builtin.go index f95e65870f8..acfde1086d4 100644 --- a/sdk/translator/builtin/builtin.go +++ b/sdk/translator/builtin/builtin.go @@ -2,9 +2,9 @@ package builtin import ( - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator" ) // Registry exposes the default registry populated with all built-in translators. diff --git a/test/builtin_tools_translation_test.go b/test/builtin_tools_translation_test.go index 70ee0ac1b95..047e1d13f9e 100644 --- a/test/builtin_tools_translation_test.go +++ b/test/builtin_tools_translation_test.go @@ -3,9 +3,9 @@ package test import ( "testing" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" ) diff --git a/test/thinking_conversion_test.go b/test/thinking_conversion_test.go index 1520dc24930..388a9e1fc8e 100644 --- a/test/thinking_conversion_test.go +++ b/test/thinking_conversion_test.go @@ -5,21 +5,21 @@ import ( "testing" "time" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/translator" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/translator" // Import provider packages to trigger init() registration of ProviderAppliers - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/antigravity" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/claude" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/codex" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/gemini" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/interactions" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/kimi" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/openai" - _ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/xai" - - "github.com/router-for-me/CLIProxyAPI/v7/internal/registry" - "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/antigravity" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/claude" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/codex" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/gemini" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/interactions" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/kimi" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/openai" + _ "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking/provider/xai" + + "github.com/awsl-project/CLIProxyAPI/v7/internal/registry" + "github.com/awsl-project/CLIProxyAPI/v7/internal/thinking" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" "github.com/tidwall/gjson" "github.com/tidwall/sjson" ) diff --git a/test/usage_logging_test.go b/test/usage_logging_test.go index bcf6d192540..8f3c6391231 100644 --- a/test/usage_logging_test.go +++ b/test/usage_logging_test.go @@ -9,12 +9,12 @@ import ( "testing" "time" - "github.com/router-for-me/CLIProxyAPI/v7/internal/config" - "github.com/router-for-me/CLIProxyAPI/v7/internal/redisqueue" - runtimeexecutor "github.com/router-for-me/CLIProxyAPI/v7/internal/runtime/executor" - cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth" - cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/executor" - sdktranslator "github.com/router-for-me/CLIProxyAPI/v7/sdk/translator" + "github.com/awsl-project/CLIProxyAPI/v7/internal/config" + "github.com/awsl-project/CLIProxyAPI/v7/internal/redisqueue" + runtimeexecutor "github.com/awsl-project/CLIProxyAPI/v7/internal/runtime/executor" + cliproxyauth "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/auth" + cliproxyexecutor "github.com/awsl-project/CLIProxyAPI/v7/sdk/cliproxy/executor" + sdktranslator "github.com/awsl-project/CLIProxyAPI/v7/sdk/translator" ) func TestGeminiExecutorRecordsSuccessfulZeroUsageInQueue(t *testing.T) {