| import { INode, INodeData, INodeParams } from '../../../src/Interface' |
| import { getBaseClasses } from '../../../src/utils' |
| import { WriteFileTool } from 'langchain/tools' |
| import { NodeFileStore } from 'langchain/stores/file/node' |
|
|
| class WriteFile_Tools implements INode { |
| label: string |
| name: string |
| description: string |
| type: string |
| icon: string |
| category: string |
| baseClasses: string[] |
| inputs: INodeParams[] |
|
|
| constructor() { |
| this.label = 'Write File' |
| this.name = 'writeFile' |
| this.type = 'WriteFile' |
| this.icon = 'writefile.svg' |
| this.category = 'Tools' |
| this.description = 'Write file to disk' |
| this.baseClasses = [this.type, 'Tool', ...getBaseClasses(WriteFileTool)] |
| this.inputs = [ |
| { |
| label: 'Base Path', |
| name: 'basePath', |
| placeholder: `C:\\Users\\User\\Desktop`, |
| type: 'string', |
| optional: true |
| } |
| ] |
| } |
|
|
| async init(nodeData: INodeData): Promise<any> { |
| const basePath = nodeData.inputs?.basePath as string |
| const store = basePath ? new NodeFileStore(basePath) : new NodeFileStore() |
| return new WriteFileTool({ store }) |
| } |
| } |
|
|
| module.exports = { nodeClass: WriteFile_Tools } |
|
|