mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(AI Transform Node): Show warning for binary data (#11560)
This commit is contained in:
@@ -31,6 +31,14 @@ export class AiTransform implements INodeType {
|
|||||||
inputs: [NodeConnectionType.Main],
|
inputs: [NodeConnectionType.Main],
|
||||||
outputs: [NodeConnectionType.Main],
|
outputs: [NodeConnectionType.Main],
|
||||||
parameterPane: 'wide',
|
parameterPane: 'wide',
|
||||||
|
hints: [
|
||||||
|
{
|
||||||
|
message:
|
||||||
|
"This node doesn't have access to the contents of binary files. To use those contents here, use the 'Extract from File' node first.",
|
||||||
|
displayCondition: '={{ $input.all().some(i => i.binary) }}',
|
||||||
|
location: 'outputPane',
|
||||||
|
},
|
||||||
|
],
|
||||||
properties: [
|
properties: [
|
||||||
{
|
{
|
||||||
displayName: 'Instructions',
|
displayName: 'Instructions',
|
||||||
|
|||||||
Reference in New Issue
Block a user