fix: make node-llama-cpp optional

This commit is contained in:
Peter Steinberger
2026-01-15 18:37:02 +00:00
parent 316e8b2eb2
commit cb78fa46a1
12 changed files with 277 additions and 87 deletions

View File

@@ -100,7 +100,7 @@ function formatTemplateValue(value: unknown): string {
.join(",");
}
if (typeof value === "object") {
return JSON.stringify(value);
return "";
}
return "";
}