From 87d34aa023f7064da700ef03714bce1b2ccae6a5 Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Tue, 11 Mar 2025 10:45:55 -0500 Subject: [PATCH] add blueprint to blocked actions --- settings.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings.js b/settings.js index 2a960fa..e1cf007 100644 --- a/settings.js +++ b/settings.js @@ -13,7 +13,7 @@ export default // the base profile is shared by all bots for default prompts/examples/modes "base_profile": "./profiles/defaults/survival.json", // also see creative.json, god_mode.json "profiles": ((process.env.PROFILES) && JSON.parse(process.env.PROFILES)) || [ - "./profiles/deepseek.json", + "./profiles/andy.json", // "./profiles/gpt.json", // "./profiles/claude.json", // "./profiles/gemini.json", @@ -35,7 +35,7 @@ export default "show_bot_views": false, // show bot's view in browser at localhost:3000, 3001... "allow_insecure_coding": process.env.INSECURE_CODING || false, // allows newAction command and model can write/run code on your computer. enable at own risk - "blocked_actions" : [], // commands to disable and remove from docs. Ex: ["!setMode"] + "blocked_actions" : ["!checkBlueprint", "!checkBlueprintLevel", "!getBlueprint", "!getBlueprintLevel"], // commands to disable and remove from docs "code_timeout_mins": -1, // minutes code is allowed to run. -1 for no timeout "relevant_docs_count": 5, // Parameter: -1 = all, 0 = no references, 5 = five references. If exceeding the maximum, all reference documents are returned.