2023-10-30 15:23:07 -06:00
|
|
|
module git.mlow.ca/mlow/lmcli
|
|
|
|
|
2023-11-12 23:33:47 -07:00
|
|
|
go 1.21
|
2023-10-30 15:23:07 -06:00
|
|
|
|
|
|
|
require (
|
2023-11-04 11:30:03 -06:00
|
|
|
github.com/go-yaml/yaml v2.1.0+incompatible
|
2023-10-30 15:23:07 -06:00
|
|
|
github.com/sashabaranov/go-openai v1.16.0
|
|
|
|
github.com/spf13/cobra v1.7.0
|
2023-11-03 10:56:20 -06:00
|
|
|
github.com/sqids/sqids-go v0.4.1
|
|
|
|
gorm.io/driver/sqlite v1.5.4
|
|
|
|
gorm.io/gorm v1.25.5
|
2023-10-30 15:23:07 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
2023-11-03 10:56:20 -06:00
|
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
2023-11-04 11:30:03 -06:00
|
|
|
github.com/kr/pretty v0.3.1 // indirect
|
2023-11-03 10:56:20 -06:00
|
|
|
github.com/mattn/go-sqlite3 v1.14.17 // indirect
|
2023-10-30 15:23:07 -06:00
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
2023-11-04 11:30:03 -06:00
|
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
|
|
gopkg.in/yaml.v2 v2.2.2 // indirect
|
2023-10-30 15:23:07 -06:00
|
|
|
)
|