initial commit

set up the database with full text search and a simple prompt template
engine
This commit is contained in:
2023-11-05 00:33:38 -06:00
commit e0430c62bd
13 changed files with 366 additions and 0 deletions

21
go.mod Normal file
View File

@ -0,0 +1,21 @@
module ctxGPT
go 1.19
require (
github.com/pkoukk/tiktoken-go v0.1.6
zombiezen.com/go/sqlite v0.13.1
)
require (
github.com/dlclark/regexp2 v1.10.0 // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
golang.org/x/sys v0.5.0 // indirect
modernc.org/libc v1.22.3 // indirect
modernc.org/mathutil v1.5.0 // indirect
modernc.org/memory v1.5.0 // indirect
modernc.org/sqlite v1.21.1 // indirect
)