Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cliproxyctl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"strings"
"time"

"github.com/kooshapari/CLIProxyAPI/v7/internal/config"
cliproxycmd "github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/cmd"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
)

const responseSchemaVersion = "cliproxyctl.response.v1"
Expand Down
2 changes: 1 addition & 1 deletion cliproxyctl/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"testing"
"time"

"github.com/kooshapari/CLIProxyAPI/v7/internal/config"
cliproxycmd "github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/cmd"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
)

func TestRunSetupJSONResponseShape(t *testing.T) {
Expand Down
8 changes: 4 additions & 4 deletions cmd/fetch_antigravity_models/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ import (
"strings"
"time"

"github.com/router-for-me/CLIProxyAPI/v6/internal/logging"
sdkauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth"
coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth"
"github.com/router-for-me/CLIProxyAPI/v6/sdk/proxyutil"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/logging"
sdkauth "github.com/kooshapari/CLIProxyAPI/v7/sdk/auth"
coreauth "github.com/kooshapari/CLIProxyAPI/v7/sdk/cliproxy/auth"
"github.com/kooshapari/CLIProxyAPI/v7/sdk/proxyutil"
log "github.com/sirupsen/logrus"
"github.com/tidwall/gjson"
Comment on lines +28 to 33
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

low

The import block is not sorted according to Go conventions. Running goimports would group third-party and internal packages correctly and sort them alphabetically. This improves code readability and maintainability.

log "github.com/sirupsen/logrus"
	"github.com/tidwall/gjson"

	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/logging"
	sdkauth "github.com/kooshapari/CLIProxyAPI/v7/sdk/auth"
	coreauth "github.com/kooshapari/CLIProxyAPI/v7/sdk/cliproxy/auth"
	"github.com/kooshapari/CLIProxyAPI/v7/sdk/proxyutil"

)
Expand Down
2 changes: 1 addition & 1 deletion cmd/mcpdebug/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"os"

cursorproto "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/cursor/proto"
cursorproto "github.com/kooshapari/CLIProxyAPI/v7/internal/auth/cursor/proto"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/protocheck/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

cursorproto "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/cursor/proto"
cursorproto "github.com/kooshapari/CLIProxyAPI/v7/internal/auth/cursor/proto"
"google.golang.org/protobuf/reflect/protoreflect"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/server/config_validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"io"
"os"

"github.com/kooshapari/CLIProxyAPI/v7/internal/config"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
"gopkg.in/yaml.v3"
)

Expand Down
26 changes: 13 additions & 13 deletions cmd/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ import (
"time"

"github.com/joho/godotenv"
configaccess "github.com/kooshapari/CLIProxyAPI/v7/internal/access/config_access"
"github.com/kooshapari/CLIProxyAPI/v7/internal/auth/kiro"
"github.com/kooshapari/CLIProxyAPI/v7/internal/buildinfo"
"github.com/kooshapari/CLIProxyAPI/v7/internal/cmd"
"github.com/kooshapari/CLIProxyAPI/v7/internal/config"
"github.com/kooshapari/CLIProxyAPI/v7/internal/logging"
"github.com/kooshapari/CLIProxyAPI/v7/internal/managementasset"
"github.com/kooshapari/CLIProxyAPI/v7/internal/misc"
"github.com/kooshapari/CLIProxyAPI/v7/internal/store"
_ "github.com/kooshapari/CLIProxyAPI/v7/internal/translator"
"github.com/kooshapari/CLIProxyAPI/v7/internal/tui"
"github.com/kooshapari/CLIProxyAPI/v7/internal/usage"
"github.com/kooshapari/CLIProxyAPI/v7/internal/util"
configaccess "github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/access/config_access"
kiro "github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/auth/kiro"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/buildinfo"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/cmd"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/logging"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/managementasset"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/misc"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/store"
_ "github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/translator"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/tui"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/usage"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/util"
sdkAuth "github.com/kooshapari/CLIProxyAPI/v7/sdk/auth"
coreauth "github.com/kooshapari/CLIProxyAPI/v7/sdk/cliproxy/auth"
log "github.com/sirupsen/logrus"
Comment on lines 19 to 35
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

low

The import block is not sorted according to Go conventions. Running goimports would group third-party and internal packages correctly and sort them alphabetically. This improves code readability and maintainability.

	"github.com/joho/godotenv"
	log "github.com/sirupsen/logrus"

	configaccess "github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/access/config_access"
	kiro "github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/auth/kiro"
	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/buildinfo"
	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/cmd"
	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/logging"
	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/managementasset"
	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/misc"
	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/store"
	_ "github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/translator"
	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/tui"
	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/usage"
	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/util"
	sdkAuth "github.com/kooshapari/CLIProxyAPI/v7/sdk/auth"
	coreauth "github.com/kooshapari/CLIProxyAPI/v7/sdk/cliproxy/auth"

Expand Down
2 changes: 1 addition & 1 deletion cmd/server/main_kiro_flags_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"testing"

"github.com/kooshapari/CLIProxyAPI/v7/internal/config"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
)

func TestValidateKiroIncognitoFlags(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions internal/auth/codebuddy/codebuddy_auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
"github.com/google/uuid"
log "github.com/sirupsen/logrus"

"github.com/router-for-me/CLIProxyAPI/v6/internal/config"
"github.com/router-for-me/CLIProxyAPI/v6/internal/util"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/util"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion internal/auth/codebuddy/token.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"os"
"path/filepath"

"github.com/router-for-me/CLIProxyAPI/v6/internal/misc"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/misc"
)

// CodeBuddyTokenStorage stores OAuth token information for CodeBuddy API authentication.
Expand Down
4 changes: 2 additions & 2 deletions internal/auth/gitlab/gitlab.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import (
"sync"
"time"

"github.com/router-for-me/CLIProxyAPI/v6/internal/config"
"github.com/router-for-me/CLIProxyAPI/v6/internal/util"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/util"
log "github.com/sirupsen/logrus"
)

Expand Down
4 changes: 2 additions & 2 deletions pkg/llmproxy/cmd/codebuddy_login.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"context"
"fmt"

"github.com/router-for-me/CLIProxyAPI/v6/internal/config"
sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
sdkAuth "github.com/kooshapari/CLIProxyAPI/v7/sdk/auth"
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/llmproxy/cmd/cursor_login_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"testing"

"github.com/kooshapari/CLIProxyAPI/v7/internal/config"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
)

func TestDoCursorLogin_TokenFileMode_WritesTokenAndConfig(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions pkg/llmproxy/cmd/gitlab_login.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"context"
"fmt"

"github.com/router-for-me/CLIProxyAPI/v6/internal/config"
sdkAuth "github.com/router-for-me/CLIProxyAPI/v6/sdk/auth"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
sdkAuth "github.com/kooshapari/CLIProxyAPI/v7/sdk/auth"
)

func DoGitLabLogin(cfg *config.Config, options *LoginOptions) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/llmproxy/cmd/iflow_cookie_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"testing"

"github.com/kooshapari/CLIProxyAPI/v7/internal/config"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
)

func TestGetAuthFilePath_UsesDefaultAuthDirAndFallbackName(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/llmproxy/cmd/roo_kilo_login_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"testing"

"github.com/kooshapari/CLIProxyAPI/v7/internal/config"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
)

func TestRunRooLoginWithRunner_Success(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/llmproxy/cmd/setup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"testing"

"github.com/kooshapari/CLIProxyAPI/v7/internal/config"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
)

func TestSetupOptions_ContainsCursorLogin(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions pkg/llmproxy/executor/claude_device_profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"sync"
"time"

"github.com/router-for-me/CLIProxyAPI/v6/internal/config"
cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
cliproxyauth "github.com/kooshapari/CLIProxyAPI/v7/sdk/cliproxy/auth"
)

const (
Expand Down
12 changes: 6 additions & 6 deletions pkg/llmproxy/executor/codebuddy_executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import (
"net/http"
"time"

"github.com/router-for-me/CLIProxyAPI/v6/internal/auth/codebuddy"
"github.com/router-for-me/CLIProxyAPI/v6/internal/config"
"github.com/router-for-me/CLIProxyAPI/v6/internal/thinking"
cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth"
cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor"
sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator"
"github.com/kooshapari/CLIProxyAPI/v7/internal/auth/codebuddy"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/thinking"
cliproxyauth "github.com/kooshapari/CLIProxyAPI/v7/sdk/cliproxy/auth"
cliproxyexecutor "github.com/kooshapari/CLIProxyAPI/v7/sdk/cliproxy/executor"
sdktranslator "github.com/kooshapari/CLIProxyAPI/v7/sdk/translator"
log "github.com/sirupsen/logrus"
)

Expand Down
14 changes: 7 additions & 7 deletions pkg/llmproxy/executor/cursor_executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ import (
"time"

"github.com/google/uuid"
cursorauth "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/cursor"
cursorproto "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/cursor/proto"
"github.com/router-for-me/CLIProxyAPI/v6/internal/config"
"github.com/router-for-me/CLIProxyAPI/v6/internal/registry"
cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth"
cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor"
sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator"
cursorauth "github.com/kooshapari/CLIProxyAPI/v7/internal/auth/cursor"
cursorproto "github.com/kooshapari/CLIProxyAPI/v7/internal/auth/cursor/proto"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/registry"
cliproxyauth "github.com/kooshapari/CLIProxyAPI/v7/sdk/cliproxy/auth"
cliproxyexecutor "github.com/kooshapari/CLIProxyAPI/v7/sdk/cliproxy/executor"
sdktranslator "github.com/kooshapari/CLIProxyAPI/v7/sdk/translator"
log "github.com/sirupsen/logrus"
"github.com/tidwall/gjson"
"golang.org/x/net/http2"
Comment on lines 19 to 29
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

low

The import block is not sorted according to Go conventions. Running goimports would group third-party and internal packages correctly and sort them alphabetically. This improves code readability and maintainability.

	"github.com/google/uuid"
	log "github.com/sirupsen/logrus"
	"github.com/tidwall/gjson"
	"golang.org/x/net/http2"

	cursorauth "github.com/kooshapari/CLIProxyAPI/v7/internal/auth/cursor"
	cursorproto "github.com/kooshapari/CLIProxyAPI/v7/internal/auth/cursor/proto"
	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/registry"
	cliproxyauth "github.com/kooshapari/CLIProxyAPI/v7/sdk/cliproxy/auth"
	cliproxyexecutor "github.com/kooshapari/CLIProxyAPI/v7/sdk/cliproxy/executor"
	sdktranslator "github.com/kooshapari/CLIProxyAPI/v7/sdk/translator"

Expand Down
16 changes: 8 additions & 8 deletions pkg/llmproxy/executor/gitlab_executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ import (
"strings"
"time"

"github.com/router-for-me/CLIProxyAPI/v6/internal/auth/gitlab"
"github.com/router-for-me/CLIProxyAPI/v6/internal/config"
"github.com/router-for-me/CLIProxyAPI/v6/internal/registry"
"github.com/router-for-me/CLIProxyAPI/v6/internal/thinking"
"github.com/router-for-me/CLIProxyAPI/v6/internal/util"
cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth"
cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor"
sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator"
"github.com/kooshapari/CLIProxyAPI/v7/internal/auth/gitlab"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/registry"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/thinking"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/util"
cliproxyauth "github.com/kooshapari/CLIProxyAPI/v7/sdk/cliproxy/auth"
cliproxyexecutor "github.com/kooshapari/CLIProxyAPI/v7/sdk/cliproxy/executor"
sdktranslator "github.com/kooshapari/CLIProxyAPI/v7/sdk/translator"
"github.com/tidwall/gjson"
Comment on lines +15 to 23
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

low

The import block is not sorted according to Go conventions. Running goimports would group third-party and internal packages correctly and sort them alphabetically. This improves code readability and maintainability.

	"github.com/tidwall/gjson"

	"github.com/kooshapari/CLIProxyAPI/v7/internal/auth/gitlab"
	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/registry"
	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/thinking"
	"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/util"
	cliproxyauth "github.com/kooshapari/CLIProxyAPI/v7/sdk/cliproxy/auth"
	cliproxyexecutor "github.com/kooshapari/CLIProxyAPI/v7/sdk/cliproxy/executor"
	sdktranslator "github.com/kooshapari/CLIProxyAPI/v7/sdk/translator"

)

Expand Down
4 changes: 1 addition & 3 deletions pkg/llmproxy/interfaces/error_message.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package interfaces

import (
internalinterfaces "github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/interfaces"
)
import "net/http"

// ErrorMessage encapsulates an error with an associated HTTP status code.
type ErrorMessage struct {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"sync/atomic"
"time"

"github.com/router-for-me/CLIProxyAPI/v6/internal/util"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/util"
log "github.com/sirupsen/logrus"

geminiopenai "github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/translator/gemini/openai/chat-completions"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"strings"
"time"

translatorcommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/common"
translatorcommon "github.com/kooshapari/CLIProxyAPI/v7/internal/translator/common"
"github.com/tidwall/gjson"
"github.com/tidwall/sjson"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"time"

translatorcommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/common"
translatorcommon "github.com/kooshapari/CLIProxyAPI/v7/internal/translator/common"
"github.com/tidwall/gjson"
"github.com/tidwall/sjson"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"context"
"time"

translatorcommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/common"
translatorcommon "github.com/kooshapari/CLIProxyAPI/v7/internal/translator/common"
"github.com/tidwall/gjson"
"github.com/tidwall/sjson"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
"sync/atomic"
"time"

translatorcommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/common"
"github.com/router-for-me/CLIProxyAPI/v6/internal/util"
translatorcommon "github.com/kooshapari/CLIProxyAPI/v7/internal/translator/common"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/util"
"github.com/tidwall/gjson"
"github.com/tidwall/sjson"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"strings"
"sync/atomic"

translatorcommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/common"
"github.com/router-for-me/CLIProxyAPI/v6/internal/util"
translatorcommon "github.com/kooshapari/CLIProxyAPI/v7/internal/translator/common"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/util"
"github.com/tidwall/gjson"
"github.com/tidwall/sjson"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"bytes"
"context"

translatorcommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/common"
translatorcommon "github.com/kooshapari/CLIProxyAPI/v7/internal/translator/common"
"github.com/tidwall/sjson"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"context"

translatorcommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/common"
translatorcommon "github.com/kooshapari/CLIProxyAPI/v7/internal/translator/common"
)

// PassthroughGeminiResponseStream forwards Gemini responses unchanged.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"sync/atomic"
"time"

"github.com/router-for-me/CLIProxyAPI/v6/internal/util"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/util"
log "github.com/sirupsen/logrus"
"github.com/tidwall/gjson"
"github.com/tidwall/sjson"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"strconv"
"strings"

translatorcommon "github.com/router-for-me/CLIProxyAPI/v6/internal/translator/common"
translatorcommon "github.com/kooshapari/CLIProxyAPI/v7/internal/translator/common"
"github.com/tidwall/gjson"
"github.com/tidwall/sjson"
)
Expand Down
8 changes: 4 additions & 4 deletions sdk/auth/codebuddy.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"fmt"
"time"

"github.com/router-for-me/CLIProxyAPI/v6/internal/auth/codebuddy"
"github.com/router-for-me/CLIProxyAPI/v6/internal/browser"
"github.com/router-for-me/CLIProxyAPI/v6/internal/config"
coreauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth"
"github.com/kooshapari/CLIProxyAPI/v7/internal/auth/codebuddy"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/browser"
"github.com/kooshapari/CLIProxyAPI/v7/pkg/llmproxy/config"
coreauth "github.com/kooshapari/CLIProxyAPI/v7/sdk/cliproxy/auth"
log "github.com/sirupsen/logrus"
)

Expand Down
Loading
Loading