export type CreateToolDto = { /** * The name of the tool */ name: string; /** * The description of the tool */ description: string; /** * The input types of the tool */ inputs: Array; /** * The output types of the tool */ outputs: Array; };