node-red-contrib-linux-copilot 1.2.8 → 1.2.10

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/linux-copilot.html +16 -15
  2. package/package.json +1 -1
@@ -2,29 +2,30 @@
2
2
  RED.nodes.registerType('linux-copilot',{
3
3
  category: 'function',
4
4
  color: '#a6bbcf',
5
- defaults: {
6
- name: {value:""},
7
- chatId: {value:""}
5
+ defaults: { name: {value:""}, chatId: {value:""} },
6
+ credentials: {
7
+ geminiKey: {type:"password"},
8
+ deepseekKey: {type:"password"}
8
9
  },
9
- credentials: {
10
- geminiKey: {type:"password"},
11
- openrouterKey: {type:"password"},
12
- deepseekKey: {type:"password"}
13
- },
14
- inputs:1,
15
- outputs:1,
16
- icon: "bridge.png",
10
+ inputs:1, outputs:1,
17
11
  label: function() { return this.name||"linux-copilot"; }
18
12
  });
19
13
  </script>
20
-
21
14
  <script type="text/html" data-template-name="linux-copilot">
22
15
  <div class="form-row">
23
- <label for="node-input-name"><i class="fa fa-tag"></i> Nom</label>
24
- <input type="text" id="node-input-name" placeholder="Name">
16
+ <label for="node-input-name">Nom</label>
17
+ <input type="text" id="node-input-name">
25
18
  </div>
26
19
  <div class="form-row">
27
- <label for="node-input-chatId">Chat ID</label>
20
+ <label for="node-input-chatId">Chat ID Telegram</label>
28
21
  <input type="text" id="node-input-chatId">
29
22
  </div>
23
+ <div class="form-row">
24
+ <label for="node-input-deepseekKey">DeepSeek Key</label>
25
+ <input type="password" id="node-input-deepseekKey">
26
+ </div>
27
+ <div class="form-row">
28
+ <label for="node-input-geminiKey">Gemini Key</label>
29
+ <input type="password" id="node-input-geminiKey">
30
+ </div>
30
31
  </script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-linux-copilot",
3
- "version": "1.2.8",
3
+ "version": "1.2.10",
4
4
  "description": "AI Linux Copilot",
5
5
  "main": "linux-copilot.js",
6
6
  "node-red": {