mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
71 lines
1.5 KiB
TypeScript
71 lines
1.5 KiB
TypeScript
import type { INodeType, INodeTypeDescription } from 'n8n-workflow';
|
|
import { imageFields, imageOperations } from './ImageDescription';
|
|
import { textFields, textOperations } from './TextDescription';
|
|
import { chatFields, chatOperations } from './ChatDescription';
|
|
|
|
export class OpenAi implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'OpenAI',
|
|
name: 'openAi',
|
|
icon: 'file:openAi.svg',
|
|
group: ['transform'],
|
|
version: [1, 1.1],
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Consume Open AI',
|
|
defaults: {
|
|
name: 'OpenAI',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'openAiApi',
|
|
required: true,
|
|
},
|
|
],
|
|
requestDefaults: {
|
|
ignoreHttpStatusErrors: true,
|
|
baseURL: 'https://api.openai.com',
|
|
},
|
|
properties: [
|
|
{
|
|
displayName:
|
|
'For more advanced uses, consider using an <a data-action="openSelectiveNodeCreator" data-action-parameter-creatorview="AI">advanced AI</a> node',
|
|
name: 'noticeAdvanceAi',
|
|
type: 'notice',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Chat',
|
|
value: 'chat',
|
|
},
|
|
{
|
|
name: 'Image',
|
|
value: 'image',
|
|
},
|
|
{
|
|
name: 'Text',
|
|
value: 'text',
|
|
},
|
|
],
|
|
default: 'text',
|
|
},
|
|
|
|
...chatOperations,
|
|
...chatFields,
|
|
|
|
...imageOperations,
|
|
...imageFields,
|
|
|
|
...textOperations,
|
|
...textFields,
|
|
],
|
|
};
|
|
}
|