Private
Public Access
1
0

Add config file handling, get OpenAPI API key using it

This commit is contained in:
2023-11-04 17:30:03 +00:00
parent 40a692f674
commit f91ae88fcd
5 changed files with 85 additions and 3 deletions

4
go.mod
View File

@@ -3,6 +3,7 @@ module git.mlow.ca/mlow/lmcli
go 1.19
require (
github.com/go-yaml/yaml v2.1.0+incompatible
github.com/sashabaranov/go-openai v1.16.0
github.com/spf13/cobra v1.7.0
github.com/sqids/sqids-go v0.4.1
@@ -14,6 +15,9 @@ require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/mattn/go-sqlite3 v1.14.17 // indirect
github.com/spf13/pflag v1.0.5 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v2 v2.2.2 // indirect
)