n8n-nodes-vlm 3.1.1 → 3.1.2

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.
@@ -0,0 +1,2 @@
1
+ export { VLMComplexityClassifier } from './nodes/VLMComplexityClassifier';
2
+ export { VLMComplexityWorkflow } from './nodes/VLMComplexityWorkflow';
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.VLMComplexityWorkflow = exports.VLMComplexityClassifier = void 0;
4
+ // Root entry point for n8n-nodes-vlm package
5
+ var VLMComplexityClassifier_1 = require("./nodes/VLMComplexityClassifier");
6
+ Object.defineProperty(exports, "VLMComplexityClassifier", { enumerable: true, get: function () { return VLMComplexityClassifier_1.VLMComplexityClassifier; } });
7
+ var VLMComplexityWorkflow_1 = require("./nodes/VLMComplexityWorkflow");
8
+ Object.defineProperty(exports, "VLMComplexityWorkflow", { enumerable: true, get: function () { return VLMComplexityWorkflow_1.VLMComplexityWorkflow; } });
@@ -12,15 +12,15 @@ const vlm_logic_1 = require("../shared/vlm-logic");
12
12
  class VLMComplexityClassifier {
13
13
  constructor() {
14
14
  this.description = {
15
- displayName: 'VLM Complexity Classifier',
15
+ displayName: 'VLM Classifier (AI Chain)',
16
16
  name: 'vlmComplexityClassifier',
17
17
  icon: 'file:vlm.svg',
18
18
  group: ['transform'],
19
19
  version: 1,
20
20
  subtitle: 'Document Complexity Classification',
21
- description: 'Classify document complexity using Vision-Language Models (LOW/HIGH)',
21
+ description: 'Classify document complexity using Vision-Language Models (LOW/HIGH) - For AI Agent chains',
22
22
  defaults: {
23
- name: 'VLM Complexity Classifier',
23
+ name: 'VLM Classifier (AI Chain)',
24
24
  },
25
25
  codex: {
26
26
  categories: ['AI'],
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "n8n-nodes-vlm",
3
- "version": "3.1.1",
3
+ "version": "3.1.2",
4
4
  "description": "Vision-Language Models for n8n - Lightweight specialized VLMs for document analysis and classification",
5
- "main": "index.js",
5
+ "main": "dist/index.js",
6
6
  "author": "Nicolas Geysse",
7
7
  "license": "MIT",
8
8
  "repository": {