From 891a136490612a34d1c947ab21a309853f84c435 Mon Sep 17 00:00:00 2001 From: Rishi Jat Date: Sat, 28 Feb 2026 19:13:52 +0530 Subject: [PATCH] fix(specs-go): remove omitempty from Model.Config json tag Signed-off-by: Rishi Jat --- specs-go/v1/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs-go/v1/config.go b/specs-go/v1/config.go index 427aa35..4462cdd 100644 --- a/specs-go/v1/config.go +++ b/specs-go/v1/config.go @@ -167,5 +167,5 @@ type Model struct { ModelFS ModelFS `json:"modelfs"` // Config defines the execution parameters which should be used as a base when running a model using an inference engine. - Config ModelConfig `json:"config,omitempty"` + Config ModelConfig `json:"config"` }