├── .editorconfig ├── .eslintrc.js ├── .eslintrc.prepublish.js ├── .github └── workflows │ ├── ci-main.yml │ └── publish-npm.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .prettierrc.js ├── .vscode └── extensions.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── README_TEMPLATE.md ├── assets ├── vlmrun-overview.png └── vlmrun-workflow.png ├── credentials └── VlmRunApi.credentials.ts ├── docs ├── DEVELOPMENT.md └── assets │ ├── vlm-black.svg │ └── vlm-white.svg ├── gulpfile.js ├── index.js ├── jest.config.js ├── nodes └── VlmRun │ ├── ApiService.ts │ ├── VlmRun.node.ts │ ├── VlmRunClient.ts │ ├── config.ts │ ├── services │ ├── BaseService.ts │ ├── DomainService.ts │ ├── FileService.ts │ ├── PredictionService.ts │ └── index.ts │ ├── types.ts │ ├── utils │ ├── fileProcessor.ts │ ├── imageProcessor.ts │ └── index.ts │ └── vlm-run.svg ├── package.json ├── pnpm-lock.yaml ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.eslintrc.prepublish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/.eslintrc.prepublish.js -------------------------------------------------------------------------------- /.github/workflows/ci-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/.github/workflows/ci-main.yml -------------------------------------------------------------------------------- /.github/workflows/publish-npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/.github/workflows/publish-npm.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.tsbuildinfo 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | git-checks=false 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/README.md -------------------------------------------------------------------------------- /README_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/README_TEMPLATE.md -------------------------------------------------------------------------------- /assets/vlmrun-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/assets/vlmrun-overview.png -------------------------------------------------------------------------------- /assets/vlmrun-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/assets/vlmrun-workflow.png -------------------------------------------------------------------------------- /credentials/VlmRunApi.credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/credentials/VlmRunApi.credentials.ts -------------------------------------------------------------------------------- /docs/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/docs/DEVELOPMENT.md -------------------------------------------------------------------------------- /docs/assets/vlm-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/docs/assets/vlm-black.svg -------------------------------------------------------------------------------- /docs/assets/vlm-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/docs/assets/vlm-white.svg -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/jest.config.js -------------------------------------------------------------------------------- /nodes/VlmRun/ApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/nodes/VlmRun/ApiService.ts -------------------------------------------------------------------------------- /nodes/VlmRun/VlmRun.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/nodes/VlmRun/VlmRun.node.ts -------------------------------------------------------------------------------- /nodes/VlmRun/VlmRunClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/nodes/VlmRun/VlmRunClient.ts -------------------------------------------------------------------------------- /nodes/VlmRun/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/nodes/VlmRun/config.ts -------------------------------------------------------------------------------- /nodes/VlmRun/services/BaseService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/nodes/VlmRun/services/BaseService.ts -------------------------------------------------------------------------------- /nodes/VlmRun/services/DomainService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/nodes/VlmRun/services/DomainService.ts -------------------------------------------------------------------------------- /nodes/VlmRun/services/FileService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/nodes/VlmRun/services/FileService.ts -------------------------------------------------------------------------------- /nodes/VlmRun/services/PredictionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/nodes/VlmRun/services/PredictionService.ts -------------------------------------------------------------------------------- /nodes/VlmRun/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/nodes/VlmRun/services/index.ts -------------------------------------------------------------------------------- /nodes/VlmRun/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/nodes/VlmRun/types.ts -------------------------------------------------------------------------------- /nodes/VlmRun/utils/fileProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/nodes/VlmRun/utils/fileProcessor.ts -------------------------------------------------------------------------------- /nodes/VlmRun/utils/imageProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/nodes/VlmRun/utils/imageProcessor.ts -------------------------------------------------------------------------------- /nodes/VlmRun/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/nodes/VlmRun/utils/index.ts -------------------------------------------------------------------------------- /nodes/VlmRun/vlm-run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/nodes/VlmRun/vlm-run.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm-run/n8n-nodes-vlmrun/HEAD/tslint.json --------------------------------------------------------------------------------