mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-01 17:27:14 +02:00
113 lines
2.8 KiB
TypeScript
113 lines
2.8 KiB
TypeScript
import { DynamicTool } from '@langchain/classic/tools';
|
|
import {
|
|
type IExecuteFunctions,
|
|
NodeConnectionTypes,
|
|
nodeNameToToolName,
|
|
type INodeType,
|
|
type INodeTypeDescription,
|
|
type ISupplyDataFunctions,
|
|
type SupplyData,
|
|
type INodeExecutionData,
|
|
} from 'n8n-workflow';
|
|
|
|
import { logWrapper, getConnectionHintNoticeField } from '@n8n/ai-utilities';
|
|
|
|
async function getTool(
|
|
ctx: ISupplyDataFunctions | IExecuteFunctions,
|
|
itemIndex: number,
|
|
): Promise<DynamicTool> {
|
|
const node = ctx.getNode();
|
|
const { typeVersion } = node;
|
|
|
|
const name = typeVersion === 1 ? 'thinking_tool' : nodeNameToToolName(node);
|
|
const description = ctx.getNodeParameter('description', itemIndex) as string;
|
|
|
|
return new DynamicTool({
|
|
name,
|
|
description,
|
|
func: async (subject: string) => {
|
|
return subject;
|
|
},
|
|
});
|
|
}
|
|
|
|
// A thinking tool, see https://www.anthropic.com/engineering/claude-think-tool
|
|
|
|
const defaultToolDescription =
|
|
'Use the tool to think about something. It will not obtain new information or change the database, but just append the thought to the log. Use it when complex reasoning or some cache memory is needed.';
|
|
|
|
export class ToolThink implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Think Tool',
|
|
name: 'toolThink',
|
|
icon: 'node:think-tool',
|
|
iconColor: 'black',
|
|
group: ['transform'],
|
|
version: [1, 1.1],
|
|
description: 'Invite the AI agent to do some thinking',
|
|
defaults: {
|
|
name: 'Think',
|
|
},
|
|
codex: {
|
|
categories: ['AI'],
|
|
subcategories: {
|
|
AI: ['Tools'],
|
|
Tools: ['Other Tools'],
|
|
},
|
|
resources: {
|
|
primaryDocumentation: [
|
|
{
|
|
url: 'https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolthink/',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
inputs: [],
|
|
outputs: [NodeConnectionTypes.AiTool],
|
|
outputNames: ['Tool'],
|
|
properties: [
|
|
getConnectionHintNoticeField([NodeConnectionTypes.AiAgent]),
|
|
{
|
|
displayName: 'Think Tool Description',
|
|
name: 'description',
|
|
type: 'string',
|
|
default: defaultToolDescription,
|
|
placeholder: '[Describe your thinking tool here, explaining how it will help the AI think]',
|
|
description: "The thinking tool's description",
|
|
typeOptions: {
|
|
rows: 3,
|
|
},
|
|
required: true,
|
|
},
|
|
],
|
|
};
|
|
|
|
async supplyData(this: ISupplyDataFunctions, itemIndex: number): Promise<SupplyData> {
|
|
const tool = await getTool(this, itemIndex);
|
|
|
|
return {
|
|
response: logWrapper(tool, this),
|
|
};
|
|
}
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
const input = this.getInputData();
|
|
const response: INodeExecutionData[] = [];
|
|
for (let i = 0; i < input.length; i++) {
|
|
const inputItem = input[i];
|
|
const tool = await getTool(this, i);
|
|
const result = await tool.invoke(inputItem.json);
|
|
response.push({
|
|
json: {
|
|
response: result,
|
|
},
|
|
pairedItem: {
|
|
item: i,
|
|
},
|
|
});
|
|
}
|
|
|
|
return [response];
|
|
}
|
|
}
|