rony-chat-bot/go.mod

35 lines
1.1 KiB
Modula-2
Raw Permalink Normal View History

2026-06-29 06:24:22 +00:00
module github.com/VictorVargas/rony-chat-bot
go 1.26
require (
github.com/VictorVargas/rony-llm-agent v0.0.0-1784272269-cde9ac3
github.com/go-chi/chi/v5 v5.3.1
github.com/spf13/cobra v1.10.2
gopkg.in/yaml.v3 v3.0.1
modernc.org/sqlite v1.53.0
)
// TODO: remove this replace when rony-llm-agent is published and the require
// above is updated to a tagged version. The replace lets `go build` work
// outside of `go.work` (e.g. on a fresh clone without the parent workspace).
replace github.com/VictorVargas/rony-llm-agent => ../rony-llm-agent
require (
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/ncruces/go-strftime v1.0.0 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
golang.org/x/sys v0.44.0 // indirect
modernc.org/libc v1.73.4 // indirect
modernc.org/mathutil v1.7.1 // indirect
modernc.org/memory v1.11.0 // indirect
)
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-sqlite3 v1.14.48
github.com/spf13/pflag v1.0.10 // indirect
)