export type UpdateToolDto = { /** * 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; };