mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(Mistral AI Node): New node (#16631)
Co-authored-by: Michael Kret <michael.k@radency.com>
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
import * as extractText from './extractText.operation';
|
||||
|
||||
export const description: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Operation',
|
||||
name: 'operation',
|
||||
type: 'options',
|
||||
noDataExpression: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['document'],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
name: 'Extract Text',
|
||||
value: 'extractText',
|
||||
description: 'Extract text from document using OCR',
|
||||
action: 'Extract text',
|
||||
},
|
||||
],
|
||||
default: 'extractText',
|
||||
},
|
||||
|
||||
...extractText.description,
|
||||
];
|
||||
Reference in New Issue
Block a user