-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
26 lines (23 loc) · 840 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
module github.com/boukeversteegh/ai-terminal-assistant-go
go 1.23
require (
github.com/fatih/color v1.15.0
github.com/go-yaml/yaml v2.1.0+incompatible
github.com/pkg/errors v0.9.1
github.com/sashabaranov/go-openai v1.29.2
github.com/shirou/gopsutil v3.21.10+incompatible
golang.org/x/crypto v0.7.0
)
require (
github.com/StackExchange/wmi v1.2.1 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.18 // indirect
github.com/stretchr/testify v1.8.1 // indirect
github.com/tklauser/go-sysconf v0.3.11 // indirect
github.com/tklauser/numcpus v0.6.0 // indirect
golang.org/x/sys v0.7.0 // indirect
golang.org/x/term v0.7.0 // indirect
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)