2024-05-29 21:49:45 -05:00
export default
{
2024-10-28 15:55:16 -05:00
"minecraft_version" : "1.20.4" , // supports up to 1.21.1
2024-08-29 19:16:28 -05:00
"host" : "127.0.0.1" , // or "localhost", "your.ip.address.here"
2025-01-26 11:39:21 -08:00
"port" : process . env . MINECRAFT _PORT || 55916 ,
2024-05-29 21:49:45 -05:00
"auth" : "offline" , // or "microsoft"
2024-11-19 22:21:17 -06:00
// the mindserver manages all agents and hosts the UI
"host_mindserver" : true , // if true, the mindserver will be hosted on this machine. otherwise, specify a public IP address
"mindserver_host" : "localhost" ,
2025-01-26 11:39:21 -08:00
"mindserver_port" : process . env . MINDSERVER _PORT || 8080 ,
2024-05-29 21:49:45 -05:00
2025-02-05 15:58:40 -06:00
// 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
2025-02-12 15:39:57 -08:00
"profiles" : ( ( process . env . PROFILES ) && JSON . parse ( process . env . PROFILES ) ) || [
2024-08-29 19:16:28 -05:00
"./andy.json" ,
2024-10-27 15:06:23 -05:00
// "./profiles/gpt.json",
// "./profiles/claude.json",
// "./profiles/gemini.json",
// "./profiles/llama.json",
2024-10-28 13:41:20 +08:00
// "./profiles/qwen.json",
2024-11-03 19:27:59 -08:00
// "./profiles/mistral.json",
2024-11-11 05:43:26 -06:00
// "./profiles/grok.json",
2025-01-07 13:41:14 -06:00
// "./profiles/mistral.json",
2024-12-26 16:45:48 -07:00
// "./profiles/deepseek.json",
2024-10-27 15:06:23 -05:00
// using more than 1 profile requires you to /msg each bot indivually
2025-02-05 15:58:40 -06:00
// individual profiles override values from the base profile
2024-05-29 21:49:45 -05:00
] ,
"load_memory" : false , // load memory from previous session
2024-11-21 23:29:52 -06:00
"init_message" : "Respond with hello world and your name" , // sends to all on spawn
2024-12-01 22:28:21 -06:00
"only_chat_with" : [ ] , // users that the bots listen to and send general messages to. if empty it will chat publicly
2024-11-02 10:46:04 -05:00
2024-10-02 00:57:28 -05:00
"language" : "en" , // translate to/from this language. Supports these language names: https://cloud.google.com/translate/docs/languages
2024-10-10 22:28:47 -05:00
"show_bot_views" : false , // show bot's view in browser at localhost:3000, 3001...
2024-10-02 00:57:28 -05:00
2024-08-22 15:57:20 -05:00
"allow_insecure_coding" : false , // allows newAction command and model can write/run code on your computer. enable at own risk
2025-01-21 14:05:50 -06:00
"code_timeout_mins" : - 1 , // minutes code is allowed to run. -1 for no timeout
2025-01-03 17:50:14 +08:00
"relevant_docs_count" : 5 , // Parameter: -1 = all, 0 = no references, 5 = five references. If exceeding the maximum, all reference documents are returned.
2024-10-10 22:15:55 -05:00
2024-10-11 14:49:40 -05:00
"max_messages" : 15 , // max number of messages to keep in context
2025-01-09 15:16:35 -06:00
"num_examples" : 2 , // number of examples to give to the model
"max_commands" : - 1 , // max number of commands that can be used in consecutive responses. -1 for no limit
2024-06-23 20:15:28 -05:00
"verbose_commands" : true , // show full command syntax
2024-08-22 15:57:20 -05:00
"narrate_behavior" : true , // chat simple automatic actions ('Picking up item!')
2024-11-21 23:29:52 -06:00
"chat_bot_messages" : true , // publicly chat messages to other bots
2024-08-25 14:05:44 -05:00
}