Skip to content

Commit 03bab05

Browse files
committed
Update ownership
1 parent c512747 commit 03bab05

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Anthropic SDK implemented in Go, supporting models such as Claude 2.1, Claude 3
77
## Installation
88

99
```
10-
go get github.com/wengchaoxi/go-anthropic
10+
go get github.com/cubeofcube-dev/go-anthropic
1111
```
1212

1313
## Usage
@@ -20,7 +20,7 @@ package main
2020
import (
2121
"fmt"
2222

23-
"github.com/wengchaoxi/go-anthropic"
23+
"github.com/cubeofcube-dev/go-anthropic"
2424
)
2525

2626
func main() {
@@ -60,7 +60,7 @@ package main
6060
import (
6161
"fmt"
6262

63-
"github.com/wengchaoxi/go-anthropic"
63+
"github.com/cubeofcube-dev/go-anthropic"
6464
)
6565

6666
func main() {

README.zh-CN.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
## 安装
88

99
```
10-
go get github.com/wengchaoxi/go-anthropic
10+
go get github.com/cubeofcube-dev/go-anthropic
1111
```
1212

1313
## 简单使用
@@ -20,7 +20,7 @@ package main
2020
import (
2121
"fmt"
2222

23-
"github.com/wengchaoxi/go-anthropic"
23+
"github.com/cubeofcube-dev/go-anthropic"
2424
)
2525

2626
func main() {
@@ -60,7 +60,7 @@ package main
6060
import (
6161
"fmt"
6262

63-
"github.com/wengchaoxi/go-anthropic"
63+
"github.com/cubeofcube-dev/go-anthropic"
6464
)
6565

6666
func main() {

client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"io"
55
"testing"
66

7-
"github.com/wengchaoxi/go-anthropic"
7+
"github.com/cubeofcube-dev/go-anthropic"
88
)
99

1010
func TestCreateMessages(t *testing.T) {

examples/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"io"
77
"os"
88

9-
"github.com/wengchaoxi/go-anthropic"
9+
"github.com/cubeofcube-dev/go-anthropic"
1010
)
1111

1212
func imageToBase64(filePath string) string {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/wengchaoxi/go-anthropic
1+
module github.com/cubeofcube-dev/go-anthropic
22

33
go 1.18

0 commit comments

Comments
 (0)