From bda680f27a095537917713a5553af8dd9729e76e Mon Sep 17 00:00:00 2001 From: Michael Peter Christen Date: Thu, 8 Jan 2026 21:33:53 +0100 Subject: fixed bug in ai.production_models default value and replaced some outdated LLMs with new ones --- source/net/yacy/htroot/LLMSelection_p.java | 1 + 1 file changed, 1 insertion(+) (limited to 'source') diff --git a/source/net/yacy/htroot/LLMSelection_p.java b/source/net/yacy/htroot/LLMSelection_p.java index 305864739..68767db04 100644 --- a/source/net/yacy/htroot/LLMSelection_p.java +++ b/source/net/yacy/htroot/LLMSelection_p.java @@ -83,6 +83,7 @@ public class LLMSelection_p { // generate table for production_models String pms = sb.getConfig("ai.production_models", "[]"); + if (pms.isEmpty() || pms.equals("{}")) pms = "[]"; try { production_models = new JSONArray(new JSONTokener(pms)); for (int i = 0; i < production_models.length(); i++) { -- cgit v1.2.3