Private
Public Access
1
0

Add initial store.go for conversation/message persistence

This commit is contained in:
2023-11-03 16:56:20 +00:00
parent fd667a1f47
commit 8fe2a2cf53
4 changed files with 112 additions and 15 deletions

6
go.mod
View File

@@ -5,9 +5,15 @@ go 1.19
require (
github.com/sashabaranov/go-openai v1.16.0
github.com/spf13/cobra v1.7.0
github.com/sqids/sqids-go v0.4.1
gorm.io/driver/sqlite v1.5.4
gorm.io/gorm v1.25.5
)
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/mattn/go-sqlite3 v1.14.17 // indirect
github.com/spf13/pflag v1.0.5 // indirect
)