@digipair/skill-llm 0.41.1 → 0.41.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.esm2.js +8 -4
  2. package/package.json +1 -1
package/index.esm2.js CHANGED
@@ -27336,10 +27336,14 @@ const isPinsSettings = (value)=>{
27336
27336
  const applyTemplate = (value, context)=>{
27337
27337
  let result = value;
27338
27338
  if (typeof value === 'string') {
27339
- const template = handlebars_min.exports.compile(value, {
27340
- noEscape: true
27341
- });
27342
- result = template(context);
27339
+ if (result.startsWith('NOEVAL:')) {
27340
+ result = value.substring(7);
27341
+ } else {
27342
+ const template = handlebars_min.exports.compile(value, {
27343
+ noEscape: true
27344
+ });
27345
+ result = template(context);
27346
+ }
27343
27347
  if (result.startsWith('EVALUATE:')) {
27344
27348
  const path = result.replace(/^EVALUATE:/, '');
27345
27349
  result = evaluate(path, _extends({}, context, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-llm",
3
- "version": "0.41.1",
3
+ "version": "0.41.3",
4
4
  "dependencies": {},
5
5
  "main": "./index.cjs.js",
6
6
  "module": "./index.esm.js"