-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/update-jieba-dependency' into 'main' (merge reques…
…t !58) feat/update-jieba-dependency feat: update encoder
- Loading branch information
Showing
11 changed files
with
138 additions
and
197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# Changelog | ||
|
||
|
||
## v1.4.5 | ||
* 更换依赖cgo的分词包,为纯go实现的分词包,以更好的支持跨平台编译 | ||
|
||
## v1.4.4 | ||
* 新增/index/add接口实现 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,25 @@ | ||
module github.com/tencent/vectordatabase-sdk-go | ||
|
||
go 1.15 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/go-ego/gse v0.80.3 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72 | ||
github.com/tencentyun/cos-go-sdk-v5 v0.7.57 | ||
github.com/yanyiwu/gojieba v1.4.3 | ||
google.golang.org/grpc v1.48.0 | ||
google.golang.org/protobuf v1.31.0 | ||
) | ||
|
||
require ( | ||
github.com/clbanning/mxj v1.8.4 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/go-querystring v1.0.0 // indirect | ||
github.com/mitchellh/mapstructure v1.4.3 // indirect | ||
github.com/mozillazg/go-httpheader v0.2.1 // indirect | ||
github.com/vcaesar/cedar v0.20.2 // indirect | ||
golang.org/x/net v0.0.0-20201021035429-f5854403a974 // indirect | ||
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4 // indirect | ||
golang.org/x/text v0.3.3 // indirect | ||
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.