- proxy/go.mod: github.com/ardenone/zai-proxy → git.ardenone.com/jedarden/zai-proxy - dashboard/go.mod: github.com/ardenone/ardenone-cluster/containers/zai-proxy-dashboard → git.ardenone.com/jedarden/zai-proxy/dashboard - Update all Go import paths in proxy/ and dashboard/ to match new module paths - Add proxy/evaluation/ package (was missing from initial commit) - Add docs/plan/plan.md with architecture, security model, telemetry design, and migration checklist Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
32 lines
1.1 KiB
Modula-2
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
|
|
)
|