33 lines
1.0 KiB
AMPL
33 lines
1.0 KiB
AMPL
module myaibot
|
|
|
|
go 1.26.4
|
|
|
|
require (
|
|
github.com/expr-lang/expr v1.17.8
|
|
github.com/go-sql-driver/mysql v1.10.0
|
|
github.com/openai/openai-go v1.12.0
|
|
github.com/peterh/liner v1.2.2
|
|
github.com/tidwall/gjson v1.14.4
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
modernc.org/sqlite v1.56.0
|
|
)
|
|
|
|
require (
|
|
filippo.io/edwards25519 v1.2.0 // indirect
|
|
github.com/dlclark/regexp2 v1.10.0 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.24 // indirect
|
|
github.com/mattn/go-runewidth v0.0.3 // indirect
|
|
github.com/ncruces/go-strftime v1.0.0 // indirect
|
|
github.com/pkoukk/tiktoken-go v0.1.8 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
github.com/tidwall/pretty v1.2.1 // indirect
|
|
github.com/tidwall/sjson v1.2.5 // indirect
|
|
golang.org/x/sys v0.47.0 // indirect
|
|
modernc.org/libc v1.74.4 // indirect
|
|
modernc.org/mathutil v1.7.1 // indirect
|
|
modernc.org/memory v1.11.0 // indirect
|
|
)
|