node-red-contrib-knx-ultimate 6.3.26 → 6.3.27

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.
package/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@
6
6
 
7
7
  # CHANGELOG
8
8
 
9
+ **Version 6.3.27** - August 2026<br/>
10
+
11
+ - KNX AI: enabled some things by default.
12
+
9
13
  **Version 6.3.26** - August 2026<br/>
10
14
 
11
15
  - **KNX AI — opt-in Web Intelligence with verified sources**: added a provider-independent general Web tool that the conversational model selects semantically from the current request, without topic-specific logic, keywords or intent classifiers. Web access is off by default; proactive Web checks require a separate opt-in, explicit user-authored AI Education, a destination learned from at least one normal chat request and a configurable 5, 10, 15, 30, 60 or 180-minute minimum interval. Setup Doctor reports Web/proactive readiness, missing Education or recipient and the live hourly budget. Interactive and proactive requests share a rolling hourly call budget, with at most three Web operations in total per user turn or proactive cycle. Web-backed answers carry runtime-validated numbered citations (`[S1]`, …) with sanitized URLs and available publication/retrieval times; external content remains untrusted data and cannot override assistant rules or permissions. Only bounded public HTTPS resources are accepted, with private/local/link-local/cloud-metadata targets, unsafe redirects, authenticated browsing and cookies blocked. Queries and the server's public IP are disclosed to external sites or the search service, while KNX/ETS data, camera content, chat identifiers, learned memory and credentials are never added automatically. Once verified Web results are available, the model can compose other enabled tools when authorized by the current chat or AI Education; existing tool availability, KNX permissions, ETS/DPT validation and configured write confirmation remain unchanged. Editor help and wiki documentation were aligned in EN, IT, DE, FR, ES and zh-CN.<br/>
@@ -441,10 +441,10 @@
441
441
  llmPromptContextTokens: { value: 16384 },
442
442
  llmAllowKnxCommands: { value: false },
443
443
  llmRequireCommandConfirmation: { value: true },
444
- webAccessEnabled: { value: false },
445
- webProactiveEnabled: { value: false },
446
- webProactiveIntervalMinutes: { value: 30 },
447
- webMaxCallsPerHour: { value: 12 },
444
+ webAccessEnabled: { value: true },
445
+ webProactiveEnabled: { value: true },
446
+ webProactiveIntervalMinutes: { value: 5 },
447
+ webMaxCallsPerHour: { value: 40 },
448
448
  chatAdapterPreset: { value: "none" },
449
449
  chatInputCode: { value: "" },
450
450
  chatOutputCode: { value: "" },
@@ -1142,7 +1142,7 @@
1142
1142
  type: "POST",
1143
1143
  contentType: "application/json",
1144
1144
  data: JSON.stringify(payload)
1145
- })
1145
+ })
1146
1146
  .done(function (data) {
1147
1147
  if (requestVersion !== localContextRequestVersion) return;
1148
1148
  const resolvedContextLength = Math.max(0, Number(data && data.contextLength) || 0);
@@ -1554,13 +1554,13 @@
1554
1554
  <div class="form-row">
1555
1555
  <input type="checkbox" id="node-input-webAccessEnabled" style="display:inline-block; width:auto; vertical-align:top;">
1556
1556
  <label style="width:auto" for="node-input-webAccessEnabled">&nbsp;&nbsp;<span data-i18n="knxUltimateAI.properties.webAccessEnabled"></span></label>
1557
- <div class="knx-ai-prompt-context-hint" data-i18n="knxUltimateAI.messages.webAccessHint"></div>
1557
+ <!-- <div class="knx-ai-prompt-context-hint" data-i18n="knxUltimateAI.messages.webAccessHint"></div> -->
1558
1558
  </div>
1559
1559
  <div id="knx-ai-web-access-settings">
1560
1560
  <div class="form-row">
1561
1561
  <label style="width:290px" for="node-input-webMaxCallsPerHour"><i class="fa fa-tachometer"></i> <span data-i18n="knxUltimateAI.properties.webMaxCallsPerHour"></span></label>
1562
1562
  <input type="number" id="node-input-webMaxCallsPerHour" min="1" max="60" step="1" style="width:100%;">
1563
- <div class="knx-ai-prompt-context-hint" data-i18n="knxUltimateAI.messages.webBudgetHint"></div>
1563
+ <!-- <div class="knx-ai-prompt-context-hint" data-i18n="knxUltimateAI.messages.webBudgetHint"></div> -->
1564
1564
  </div>
1565
1565
  <div class="form-row">
1566
1566
  <input type="checkbox" id="node-input-webProactiveEnabled" style="display:inline-block; width:auto; vertical-align:top;">
@@ -1606,4 +1606,4 @@
1606
1606
  </div>
1607
1607
  </div>
1608
1608
  </div>
1609
- </script>
1609
+ </script>
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "engines": {
4
4
  "node": ">=20.18.1"
5
5
  },
6
- "version": "6.3.26",
6
+ "version": "6.3.27",
7
7
  "description": "KNX Ultimate is the most advanced KNX integration for Node-RED, providing secure KNX/IP communication, routing, ETS project import, Philips Hue, Matter Controller and Matter Bridge (control matter device via KNX and expose KNX GA via Matter), MQTT and Modbus adapters, diagnostics with AI, virtual devices, and powerful automation nodes. Build professional, reliable, and scalable smart home and building automation projects with minimal effort.",
8
8
  "files": [
9
9
  "nodes/",
@@ -150,4 +150,4 @@
150
150
  "vite": "^7.3.6",
151
151
  "vue": "^3.5.41"
152
152
  }
153
- }
153
+ }