Files
n8n-enterprise-unlocked/packages/@n8n/nodes-langchain/nodes/tools/ToolThink/ToolThink.node.ts

80 lines
2.1 KiB
TypeScript

/* eslint-disable n8n-nodes-base/node-dirname-against-convention */
import { DynamicTool } from 'langchain/tools';
import {
NodeConnectionTypes,
type INodeType,
type INodeTypeDescription,
type ISupplyDataFunctions,
type SupplyData,
} from 'n8n-workflow';
import { logWrapper } from '@utils/logWrapper';
import { getConnectionHintNoticeField } from '@utils/sharedFields';
// 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: 'fa:brain',
iconColor: 'black',
group: ['transform'],
version: 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 description = this.getNodeParameter('description', itemIndex) as string;
const tool = new DynamicTool({
name: 'thinking_tool',
description,
func: async (subject: string) => {
return subject;
},
});
return {
response: logWrapper(tool, this),
};
}
}