You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'Plan how to craft an item. Shows the full recipe tree, what resources you have, what you\'re missing, and whether you can craft it now. Use this BEFORE attempting to craft complex items to understand what you need.',
434
+
execution: 'parallel',
435
+
schema: z.object({
436
+
item_name: z.string().describe('The name of the item you want to craft (e.g., "diamond_pickaxe", "oak_planks").'),
437
+
amount: z.number().int().min(1).default(1).describe('How many of the item you want to craft.'),
description: 'Automatically craft an item if you have all the required resources. This will check the recipe, verify you have materials, and craft it. Use recipePlan first to see if crafting is possible.',
446
+
execution: 'sequential',
447
+
schema: z.object({
448
+
item_name: z.string().describe('The name of the item to craft.'),
449
+
amount: z.number().int().min(1).default(1).describe('How many of the item to craft.'),
0 commit comments