zai-proxy/go.mod
jedarden 91746e79ac refactor(module): move go.mod to root and consolidate dependencies
- Move go.mod and go.sum from proxy/ to repository root
- Enables running tests with 'go test ./proxy' from project root
- Module path: git.ardenone.com/jedarden/zai-proxy
- Go 1.23 with toolchain go1.24.13

Co-Authored-By: Claude <noreply@anthropic.com>
Bead-Id: bf-1rb
2026-07-02 11:52:23 -04:00

32 lines
1.1 KiB
Modula-2

module git.ardenone.com/jedarden/zai-proxy
go 1.23
toolchain go1.24.13
require (
github.com/gomlx/tokenizers v0.0.0-20260129083945-33a3f3270179
github.com/prometheus/client_golang v1.19.0
github.com/tiktoken-go/tokenizer v0.7.0
golang.org/x/time v0.5.0
)
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dlclark/regexp2 v1.11.5 // indirect
github.com/google/uuid v1.4.0 // indirect
github.com/magefile/mage v1.15.0 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/prometheus/client_model v0.5.0 // indirect
github.com/prometheus/common v0.48.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/schollz/progressbar/v3 v3.13.1 // indirect
golang.org/x/sys v0.16.0 // indirect
golang.org/x/term v0.6.0 // indirect
google.golang.org/protobuf v1.32.0 // indirect
)