- Remove go-mlx from go.mod (breaks non-darwin builds) - Fix go-inference pseudo-version for CI compatibility - Fix mapTokenToDomain prefix collision (castle, credential) - Add testing.Short() skip to slow classification benchmarks - Add 80% accuracy threshold to integration test Integration test moved to integration/ sub-module with its own go.mod to cleanly isolate go-mlx dependency from the main module. Co-Authored-By: Virgil <virgil@lethean.io>
15 lines
409 B
Modula-2
15 lines
409 B
Modula-2
module forge.lthn.ai/core/go-i18n/integration
|
|
|
|
go 1.25.5
|
|
|
|
require (
|
|
forge.lthn.ai/core/go-i18n v0.0.0-00010101000000-000000000000
|
|
forge.lthn.ai/core/go-inference v0.0.0-00010101000000-000000000000
|
|
forge.lthn.ai/core/go-mlx v0.0.0-00010101000000-000000000000
|
|
)
|
|
|
|
replace (
|
|
forge.lthn.ai/core/go-i18n => ../
|
|
forge.lthn.ai/core/go-inference => ../../go-inference
|
|
forge.lthn.ai/core/go-mlx => ../../go-mlx
|
|
)
|