n8n-nodes-nilai 0.1.3 → 0.1.5
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/README.md
CHANGED
|
@@ -45,7 +45,7 @@ Turn off **Simplify Output** to receive the full raw nilAI response.
|
|
|
45
45
|
Two independent checks, both run locally with no external dependencies:
|
|
46
46
|
|
|
47
47
|
- **Response signature (`tee_verified`).** nilAI signs each response inside the enclave (secp256k1 ECDSA over SHA-256). The node fetches the enclave's public key, reconstructs the exact signed bytes from the raw response, and verifies the signature.
|
|
48
|
-
- **Enclave attestation (`attestation_verified`).** The node fetches the enclave's AMD SEV-SNP attestation report, fetches the chip's certificate and AMD's certificate chain, and verifies the chain up to AMD's root, the report signature, the TCB values, that debug mode is off, the launch measurement against a known-good build
|
|
48
|
+
- **Enclave attestation (`attestation_verified`).** The node fetches the enclave's AMD SEV-SNP attestation report, fetches the chip's certificate and AMD's certificate chain, and verifies the chain up to AMD's root, the report signature, the TCB values, that debug mode is off, and the launch measurement against a known-good build. The signed report also carries a `report_data` value that binds the serving TLS certificate; the node surfaces it in the output for out-of-band checking, but does not open a raw TLS connection to verify that binding live, because n8n's sandbox does not permit community nodes to make TLS connections.
|
|
49
49
|
|
|
50
50
|
## Resources
|
|
51
51
|
|
|
@@ -33,7 +33,7 @@ class NilAi {
|
|
|
33
33
|
this.description = {
|
|
34
34
|
displayName: 'nilAI',
|
|
35
35
|
name: 'nilAi',
|
|
36
|
-
icon: 'file:nilai.svg',
|
|
36
|
+
icon: { light: 'file:nilai.svg', dark: 'file:nilai-dark.svg' },
|
|
37
37
|
group: ['transform'],
|
|
38
38
|
version: 1,
|
|
39
39
|
subtitle: '={{$parameter["model"]}}',
|
|
@@ -202,7 +202,7 @@ class NilAi {
|
|
|
202
202
|
});
|
|
203
203
|
continue;
|
|
204
204
|
}
|
|
205
|
-
throw new n8n_workflow_1.NodeOperationError(this.getNode(), error);
|
|
205
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), error, { itemIndex: i });
|
|
206
206
|
}
|
|
207
207
|
}
|
|
208
208
|
return [returnData];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-nilai",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Use Nillion nilAI — private LLM inference in a TEE, OpenAI-compatible — directly in n8n, with built-in cryptographic verification of every response.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"main": "index.js",
|
|
29
29
|
"scripts": {
|
|
30
|
-
"build": "rm -rf dist && tsc && mkdir -p dist/nodes/NilAi dist/credentials && cp nodes/NilAi/nilai.svg dist/nodes/NilAi/nilai.svg && cp nodes/NilAi/nilai.svg dist/credentials/nilai.svg",
|
|
30
|
+
"build": "rm -rf dist && tsc && mkdir -p dist/nodes/NilAi dist/credentials && cp nodes/NilAi/nilai.svg dist/nodes/NilAi/nilai.svg && cp nodes/NilAi/nilai-dark.svg dist/nodes/NilAi/nilai-dark.svg && cp nodes/NilAi/nilai.svg dist/credentials/nilai.svg",
|
|
31
31
|
"dev": "tsc --watch",
|
|
32
32
|
"typecheck": "tsc --noEmit",
|
|
33
33
|
"check-version": "node bin/check-version.js",
|