From 04067438d9e951eed2facad90c96c95e0d64105a Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 20 Feb 2026 00:49:10 +0000 Subject: [PATCH] fix: add transitive replace for go-inference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit go-i18n imports go-inference, needs local replace. Note: go-i18n has API mismatch (Classify method) — root package fails to build. Codegen and WASM sub-packages pass. Co-Authored-By: Charon --- go.mod | 3 +++ 1 file changed, 3 insertions(+) diff --git a/go.mod b/go.mod index e6d771e..c042e83 100644 --- a/go.mod +++ b/go.mod @@ -4,12 +4,15 @@ go 1.25.5 replace forge.lthn.ai/core/go-i18n => ../go-i18n +replace forge.lthn.ai/core/go-inference => ../go-inference + require ( forge.lthn.ai/core/go-i18n v0.0.0-00010101000000-000000000000 github.com/stretchr/testify v1.11.1 ) require ( + forge.lthn.ai/core/go-inference v0.0.0-00010101000000-000000000000 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect golang.org/x/text v0.33.0 // indirect