From 6197ba736219fb7f42af6bdbc58cf879bf4ec487 Mon Sep 17 00:00:00 2001 From: alvaro Date: Tue, 11 Nov 2025 14:03:06 +0100 Subject: [PATCH] Remove tag parameter from run_code tool The parameter is defined in the SDK but is unused and causes errors --- src/tools/run-code-tool-definitinos.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/tools/run-code-tool-definitinos.ts b/src/tools/run-code-tool-definitinos.ts index 9c2d49b..20516a6 100644 --- a/src/tools/run-code-tool-definitinos.ts +++ b/src/tools/run-code-tool-definitinos.ts @@ -43,10 +43,6 @@ export const RunCodeOptionsSchema = z.object({ .describe( "Input parameters to be passed to the code execution. These parameters can be accessed within your code and must match the expected parameter schema if defined." ), - tag: z - .string() - .optional() - .describe("A version tag or an alias of the version"), }); export const getCodingRules = async (): Promise => {