diff --git a/settings.js b/settings.js index 942a695..b782097 100644 --- a/settings.js +++ b/settings.js @@ -34,7 +34,7 @@ const settings = { "allow_insecure_coding": false, // allows newAction command and model can write/run code on your computer. enable at own risk "allow_vision": false, // allows vision model to interpret screenshots as inputs - "blocked_actions" : ["!checkBlueprint", "!checkBlueprintLevel", "!getBlueprint", "!getBlueprintLevel"], // commands to disable and remove from docs. Ex: ["!setMode"] + "blocked_actions" : ["!checkBlueprint", "!checkBlueprintLevel", "!getBlueprint", "!getBlueprintLevel"] , // commands to disable and remove from docs. Ex: ["!setMode"] "code_timeout_mins": -1, // minutes code is allowed to run. -1 for no timeout "relevant_docs_count": 5, // number of relevant code function docs to select for prompting. -1 for all diff --git a/src/agent/agent.js b/src/agent/agent.js index 745abd5..3cd671b 100644 --- a/src/agent/agent.js +++ b/src/agent/agent.js @@ -198,7 +198,6 @@ export class Agent { if (!this.task || !this.task.agent_names) { return; } - console.log(this.task.agent_names) const missingPlayers = this.task.agent_names.filter(name => !this.bot.players[name]); if (missingPlayers.length > 0) { diff --git a/tasks/__pycache__/evaluation_script.cpython-39.pyc b/tasks/__pycache__/evaluation_script.cpython-39.pyc deleted file mode 100644 index 4d89ed2..0000000 Binary files a/tasks/__pycache__/evaluation_script.cpython-39.pyc and /dev/null differ diff --git a/test/test_get_crafting_plan.js b/test/test_get_crafting_plan.js deleted file mode 100644 index ee435e6..0000000 --- a/test/test_get_crafting_plan.js +++ /dev/null @@ -1,16 +0,0 @@ -import * as mc from '../src/utils/mcdata.js'; -import minecraftData from 'minecraft-data'; - -const mc_version = '1.21.1' -const mcdata = minecraftData(mc_version); -console.log(mcdata.recipes[mc.getItemId('white_dye')]) -console.log(mcdata.recipes[mc.getItemId('oak_planks')]) -console.log(mcdata.recipes[mc.getItemId('wooden_pickaxe')]) -if (mcdata.recipes['minecraft:white_dye']) { - console.log('Recipe found') -} -const target_item = 'white_dye' -const quantity = 1 -const curr_inventory = {} -let craftingPlan = mc.getDetailedCraftingPlan(target_item, quantity, curr_inventory) -console.log(craftingPlan) \ No newline at end of file