From e91a5554f655bad157d2ffd549a21909f62064de Mon Sep 17 00:00:00 2001 From: yumoqing Date: Thu, 7 May 2026 10:39:27 +0800 Subject: [PATCH] fix: add length/dec attributes to float/decimal fields in model definitions --- models/harnessed_reasoning_config.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/models/harnessed_reasoning_config.json b/models/harnessed_reasoning_config.json index acf5109..5e82a6d 100644 --- a/models/harnessed_reasoning_config.json +++ b/models/harnessed_reasoning_config.json @@ -116,6 +116,8 @@ "name": "temperature", "title": "LLM temperature (0.0-1.0)", "type": "float", + "length": 5, + "dec": 2, "nullable": "no", "default": "0.7" }, @@ -130,6 +132,8 @@ "name": "top_p", "title": "Top-p sampling parameter", "type": "float", + "length": 5, + "dec": 2, "nullable": "no", "default": "0.9" },