rony-chat-bot/go.mod
Victor Hugo Vargas 8698d51ab4
Some checks are pending
Build / build (push) Waiting to run
build: pin rony-llm-agent and add CI build workflow
- require github.com/VictorVargas/rony-llm-agent pinned to a pseudo-version
  (latest commit on cde9ac3); will be replaced by a tagged version once the
  dep is tagged and published
- replace directive lets 'go build' work on a fresh clone without the
  parent go.work; REMOVE this replace when the dep is public
- build.yml: builds the binary on push to main and tag push, uploads as
  artifact, and attaches to the release on tag push when one exists

CI will fail until rony-llm-agent is public — that's expected. Remove the
replace and bump the require version to the first tagged release when it is.
2026-07-30 23:10:12 -07:00

34 lines
1.1 KiB
Modula-2

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
)