import { INode, INodeData, INodeParams } from '../../../src/Interface' import { getBaseClasses } from '../../../src/utils' import { desc, RequestParameters, RequestsGetTool } from './core' class RequestsGet_Tools implements INode { label: string name: string description: string type: string icon: string category: string baseClasses: string[] inputs: INodeParams[] constructor() { this.label = 'Requests Get' this.name = 'requestsGet' this.type = 'RequestsGet' this.icon = 'requestsget.svg' this.category = 'Tools' this.description = 'Execute HTTP GET requests' this.baseClasses = [this.type, ...getBaseClasses(RequestsGetTool)] this.inputs = [ { label: 'URL', name: 'url', type: 'string', description: 'Agent will make call to this exact URL. If not specified, agent will try to figure out itself from AIPlugin if provided', additionalParams: true, optional: true }, { label: 'Description', name: 'description', type: 'string', rows: 4, default: desc, description: 'Acts like a prompt to tell agent when it should use this tool', additionalParams: true, optional: true }, { label: 'Headers', name: 'headers', type: 'json', additionalParams: true, optional: true } ] } async init(nodeData: INodeData): Promise { const headers = nodeData.inputs?.headers as string const url = nodeData.inputs?.url as string const description = nodeData.inputs?.description as string const obj: RequestParameters = {} if (url) obj.url = url if (description) obj.description = description if (headers) { const parsedHeaders = typeof headers === 'object' ? headers : JSON.parse(headers) obj.headers = parsedHeaders } return new RequestsGetTool(obj) } } module.exports = { nodeClass: RequestsGet_Tools }