-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
31 lines (28 loc) · 1.01 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
module github.com/quantonganh/chatgpt
go 1.20
require (
github.com/gdamore/tcell/v2 v2.6.0
github.com/kljensen/snowball v0.8.0
github.com/mitchellh/go-homedir v1.1.0
github.com/pkoukk/tiktoken-go v0.1.1
github.com/rivo/tview v0.0.0-20230320095235-84f9c0ff9de8
github.com/tidwall/buntdb v1.2.10
)
require (
github.com/dlclark/regexp2 v1.8.1 // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/tidwall/btree v1.6.0 // indirect
github.com/tidwall/gjson v1.14.4 // indirect
github.com/tidwall/grect v0.1.4 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
github.com/tidwall/rtred v0.1.2 // indirect
github.com/tidwall/tinyqueue v0.1.1 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/term v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
)