diff --git a/src/everything/everything.ts b/src/everything/everything.ts index b1f6950b..8c22b9d8 100644 --- a/src/everything/everything.ts +++ b/src/everything/everything.ts @@ -46,7 +46,10 @@ const LongRunningOperationSchema = z.object({ .number() .default(10) .describe("Duration of the operation in seconds"), - steps: z.number().default(5).describe("Number of steps in the operation"), + steps: z + .number() + .default(5) + .describe("Number of steps in the operation"), }); const PrintEnvSchema = z.object({});