Update settings.js

This commit is contained in:
Vineeth 2024-08-25 14:05:44 -05:00 committed by GitHub
parent fd5370f63f
commit 6f24c14bd0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,12 +1,14 @@
export default export default
{ {
"minecraft_version": "1.20.4", // supports up to 1.20.4 "minecraft_version": "1.20.4", // supports up to 1.20.4
"host": "127.0.0.1", // or "localhost", "your.ip.address.here" "host": "localhost", // or "localhost", "your.ip.address.here"
"port": 55916, "port": 55916,
"auth": "offline", // or "microsoft" "auth": "offline", // or "microsoft"
"profiles": [ "profiles": [
"./andy.json", //"./andy.json",
"./profiles/dolphin.json" // Groq support, mixtral model
// add more profiles here, check ./profiles/ for more // add more profiles here, check ./profiles/ for more
// more than 1 profile will require you to /msg each bot indivually // more than 1 profile will require you to /msg each bot indivually
], ],
@ -19,4 +21,5 @@ export default
"max_commands": -1, // max number of commands to use in a response. -1 for no limit "max_commands": -1, // max number of commands to use in a response. -1 for no limit
"verbose_commands": true, // show full command syntax "verbose_commands": true, // show full command syntax
"narrate_behavior": true, // chat simple automatic actions ('Picking up item!') "narrate_behavior": true, // chat simple automatic actions ('Picking up item!')
} "preferred_language": "english", // the bot will respond/message in this language. Secondly all language names are based on google translate's names.
}