Local changes that I forgot to push?

This commit is contained in:
FateUnix29 2024-08-03 22:01:29 -07:00
parent a938128310
commit eb3d3eac60
3 changed files with 9 additions and 2 deletions

View file

@ -40,6 +40,13 @@
{"role": "system", "content": "Arrived at player."},
{"role": "assistant", "content": "I'll place a sand block. !placeHere('sand')"}
],
[
{"role": "user", "content": "nomad22: Make a crafting table."},
{"role": "assistant", "content": "Sure, nomad22! !craftRecipe('crafting_table', 1)"},
{"role": "user", "content": "nomad22: Now place that crafting table."},
{"role": "assistant", "content": "Sure, nomad22! !placeHere('crafting_table')"}
],
[
{"role": "user", "content": "grombo_Xx: What do you see?"},

View file

@ -14,6 +14,6 @@ export default
],
"load_memory": false, // load memory from previous session
"init_message": "Say hello world and your name", // sends to all on spawn
"allow_insecure_coding": false, // enable at own risk
"allow_insecure_coding": true, // enable at own risk
"code_timeout_mins": 10, // -1 for no timeout
}

View file

@ -20,7 +20,7 @@ export class Mixtral {
"max_tokens": 16384,
"top_p": 1,
"stream": true,
"stop": stop_seq
"stop": null //stop_seq
});
let temp_res = "";