-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
51 lines (46 loc) · 1.79 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
43
44
45
46
47
48
49
50
51
module github.com/lyricat/goutils
go 1.22.2
toolchain go1.22.4
require (
github.com/Azure/azure-sdk-for-go/sdk/ai/azopenai v0.7.1
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0
github.com/sashabaranov/go-openai v1.36.0
github.com/shopspring/decimal v1.4.0
golang.org/x/exp v0.0.0-20241210194714-1829a127f884
google.golang.org/grpc v1.69.0
)
require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/goccy/go-json v0.10.4 // indirect
github.com/gorilla/websocket v1.5.3 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/lestrrat-go/blackmagic v1.0.2 // indirect
github.com/lestrrat-go/httpcc v1.0.1 // indirect
github.com/lestrrat-go/httprc v1.0.6 // indirect
github.com/lestrrat-go/iter v1.0.2 // indirect
github.com/lestrrat-go/option v1.0.1 // indirect
github.com/segmentio/asm v1.2.0 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/sys v0.28.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 // indirect
google.golang.org/protobuf v1.35.2 // indirect
)
require (
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect
github.com/aws/aws-sdk-go v1.55.5
github.com/bwmarrin/discordgo v0.28.1
github.com/gofrs/uuid v4.4.0+incompatible
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/lestrrat-go/jwx/v2 v2.1.3
github.com/line/line-bot-sdk-go/v8 v8.10.0
github.com/pemistahl/lingua-go v1.4.0
github.com/qdrant/go-client v1.12.0
github.com/redis/go-redis/v9 v9.7.0
github.com/yuin/goldmark v1.7.8
golang.org/x/net v0.32.0 // indirect
golang.org/x/oauth2 v0.24.0
golang.org/x/text v0.21.0 // indirect
gopkg.in/square/go-jose.v2 v2.6.0
)