mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-18 08:00:48 -08:00
51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
|
/* eslint-disable n8n-nodes-base/node-dirname-against-convention */
|
||
|
import {
|
||
|
NodeConnectionType,
|
||
|
type IExecuteFunctions,
|
||
|
type INodeType,
|
||
|
type INodeTypeDescription,
|
||
|
type SupplyData,
|
||
|
} from 'n8n-workflow';
|
||
|
import { WikipediaQueryRun } from 'langchain/tools';
|
||
|
import { logWrapper } from '../../../utils/logWrapper';
|
||
|
import { getConnectionHintNoticeField } from '../../../utils/sharedFields';
|
||
|
|
||
|
export class ToolWikipedia implements INodeType {
|
||
|
description: INodeTypeDescription = {
|
||
|
displayName: 'Wikipedia',
|
||
|
name: 'toolWikipedia',
|
||
|
icon: 'file:wikipedia.svg',
|
||
|
group: ['transform'],
|
||
|
version: 1,
|
||
|
description: 'Search in Wikipedia',
|
||
|
defaults: {
|
||
|
name: 'Wikipedia',
|
||
|
},
|
||
|
codex: {
|
||
|
categories: ['AI'],
|
||
|
subcategories: {
|
||
|
AI: ['Tools'],
|
||
|
},
|
||
|
resources: {
|
||
|
primaryDocumentation: [
|
||
|
{
|
||
|
url: 'https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwikipedia/',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
// eslint-disable-next-line n8n-nodes-base/node-class-description-inputs-wrong-regular-node
|
||
|
inputs: [],
|
||
|
// eslint-disable-next-line n8n-nodes-base/node-class-description-outputs-wrong
|
||
|
outputs: [NodeConnectionType.AiTool],
|
||
|
outputNames: ['Tool'],
|
||
|
properties: [getConnectionHintNoticeField([NodeConnectionType.AiAgent])],
|
||
|
};
|
||
|
|
||
|
async supplyData(this: IExecuteFunctions): Promise<SupplyData> {
|
||
|
return {
|
||
|
response: logWrapper(new WikipediaQueryRun(), this),
|
||
|
};
|
||
|
}
|
||
|
}
|