comments updated

This commit is contained in:
mic 2025-02-11 23:39:58 +01:00
parent f4e8ce3227
commit cb10e4fa59

View file

@ -310,11 +310,11 @@ export function extractJsonObject(inputString) {
// console.log(">>>>>>>>>> Extracted JSON object:", jsonObject);
return jsonObject;
} else {
console.error("[ThunderAI-Sparks] No JSON object found in the input string.");
console.error("[ThunderAI] No JSON object found in the input string.");
return null;
}
} catch (error) {
console.error("[ThunderAI-Sparks] Error extracting JSON object:", error);
console.error("[ThunderAI] Error extracting JSON object:", error);
return null;
}
}