node-red-contrib-linux-copilot 1.2.8 → 1.2.9
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/linux-copilot.html +33 -4
- package/package.json +1 -1
package/linux-copilot.html
CHANGED
|
@@ -4,7 +4,10 @@
|
|
|
4
4
|
color: '#a6bbcf',
|
|
5
5
|
defaults: {
|
|
6
6
|
name: {value:""},
|
|
7
|
-
chatId: {value:""}
|
|
7
|
+
chatId: {value:""},
|
|
8
|
+
prioDS: {value: 1},
|
|
9
|
+
prioOR: {value: 2},
|
|
10
|
+
prioGEM: {value: 3}
|
|
8
11
|
},
|
|
9
12
|
credentials: {
|
|
10
13
|
geminiKey: {type:"password"},
|
|
@@ -21,10 +24,36 @@
|
|
|
21
24
|
<script type="text/html" data-template-name="linux-copilot">
|
|
22
25
|
<div class="form-row">
|
|
23
26
|
<label for="node-input-name"><i class="fa fa-tag"></i> Nom</label>
|
|
24
|
-
<input type="text" id="node-input-name" placeholder="
|
|
27
|
+
<input type="text" id="node-input-name" placeholder="Nom du node">
|
|
25
28
|
</div>
|
|
26
29
|
<div class="form-row">
|
|
27
|
-
<label for="node-input-chatId">Chat ID</label>
|
|
28
|
-
<input type="text" id="node-input-chatId">
|
|
30
|
+
<label for="node-input-chatId"><i class="fa fa-comment"></i> Chat ID</label>
|
|
31
|
+
<input type="text" id="node-input-chatId" placeholder="ID Telegram">
|
|
32
|
+
</div>
|
|
33
|
+
<hr>
|
|
34
|
+
<h4>Configuration API & Priorités</h4>
|
|
35
|
+
<div class="form-row">
|
|
36
|
+
<label for="node-input-deepseekKey"><i class="fa fa-key"></i> DeepSeek Key</label>
|
|
37
|
+
<input type="password" id="node-input-deepseekKey">
|
|
38
|
+
</div>
|
|
39
|
+
<div class="form-row">
|
|
40
|
+
<label for="node-input-prioDS">Prio DeepSeek</label>
|
|
41
|
+
<input type="number" id="node-input-prioDS" style="width:70px">
|
|
42
|
+
</div>
|
|
43
|
+
<div class="form-row">
|
|
44
|
+
<label for="node-input-openrouterKey"><i class="fa fa-key"></i> OpenRouter Key</label>
|
|
45
|
+
<input type="password" id="node-input-openrouterKey">
|
|
46
|
+
</div>
|
|
47
|
+
<div class="form-row">
|
|
48
|
+
<label for="node-input-prioOR">Prio OpenRouter</label>
|
|
49
|
+
<input type="number" id="node-input-prioOR" style="width:70px">
|
|
50
|
+
</div>
|
|
51
|
+
<div class="form-row">
|
|
52
|
+
<label for="node-input-geminiKey"><i class="fa fa-key"></i> Gemini Key</label>
|
|
53
|
+
<input type="password" id="node-input-geminiKey">
|
|
54
|
+
</div>
|
|
55
|
+
<div class="form-row">
|
|
56
|
+
<label for="node-input-prioGEM">Prio Gemini</label>
|
|
57
|
+
<input type="number" id="node-input-prioGEM" style="width:70px">
|
|
29
58
|
</div>
|
|
30
59
|
</script>
|