-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgo.mod
42 lines (36 loc) · 1.21 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
module github.com/webws/embedding-knowledge-base
go 1.21
toolchain go1.21.0
require (
github.com/qdrant/go-client v1.1.1
github.com/sashabaranov/go-openai v1.8.0
)
require (
github.com/spf13/pflag v1.0.5
google.golang.org/grpc v1.55.0
)
require (
github.com/alecthomas/colour v0.1.0 // indirect
github.com/alecthomas/repr v0.0.0-20210801044451-80ca428c5142 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sergi/go-diff v1.2.0 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
go.uber.org/zap v1.24.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/alecthomas/assert v1.0.0
github.com/golang/protobuf v1.5.3 // indirect
github.com/spf13/cobra v1.7.0
github.com/stretchr/testify v1.8.4
github.com/webws/go-moda v0.0.0-20230916221114-19e0fc168096
golang.org/x/net v0.10.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
google.golang.org/protobuf v1.30.0 // indirect
)