Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion andy.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "andy",

"model": "gpt-5-nano"
"model": "gemini-2.0-flash"

}
6 changes: 3 additions & 3 deletions settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const settings = {

// the mindserver manages all agents and hosts the UI
"mindserver_port": 8080,
"auto_open_ui": true, // opens UI in browser on startup
"auto_open_ui": false, // opens UI in browser on startup

"base_profile": "assistant", // survival, assistant, creative, or god_mode
"profiles": [
Expand All @@ -27,7 +27,7 @@ const settings = {
],

"load_memory": false, // load memory from previous session
"init_message": "Respond with hello world and your name", // sends to all on spawn
// "init_message": "Respond with hello world and your name", // sends to all on spawn
"only_chat_with": [], // users that the bots listen to and send general messages to. if empty it will chat publicly

"speak": false,
Expand All @@ -40,7 +40,7 @@ const settings = {
"language": "en", // translate to/from this language. Supports these language names: https://cloud.google.com/translate/docs/languages
"render_bot_view": false, // show bot's view in browser at localhost:3000, 3001...

"allow_insecure_coding": false, // allows newAction command and model can write/run code on your computer. enable at own risk
"allow_insecure_coding": true, // 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"]
"code_timeout_mins": -1, // minutes code is allowed to run. -1 for no timeout
Expand Down
8 changes: 8 additions & 0 deletions src/agent/commands/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -491,4 +491,12 @@ export const actionsList = [
await skills.useToolOn(agent.bot, tool_name, target);
})
},
{
name: '!buildLavaPortal',
description: 'Use a nearby lava pool and a water bucket to build a nether portal.',
params: { },
perform: runAsAction(async (agent) => {
await skills.buildLavaPortal(agent.bot);
})
}
];
Loading