-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
31 lines (26 loc) · 843 Bytes
/
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
module github.com/modernice/jotbot
go 1.20
require (
github.com/dave/jennifer v1.6.1 // indirect
github.com/google/go-cmp v0.6.0
)
require golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842
require (
github.com/MakeNowJust/heredoc/v2 v2.0.1
github.com/alecthomas/kong v0.9.0
github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883
github.com/bmatcuk/doublestar/v4 v4.6.1
github.com/dave/dst v0.27.3
github.com/sashabaranov/go-openai v1.24.0
github.com/spf13/afero v1.11.0
github.com/tiktoken-go/tokenizer v0.1.1
)
require (
github.com/dlclark/regexp2 v1.11.0 // indirect
github.com/sergi/go-diff v1.3.1 // indirect
github.com/stretchr/testify v1.8.2 // indirect
golang.org/x/mod v0.17.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/text v0.15.0 // indirect
golang.org/x/tools v0.21.0 // indirect
)