mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-03-28 14:56:24 +01:00
Local changes that I forgot to push?
This commit is contained in:
parent
a938128310
commit
eb3d3eac60
3 changed files with 9 additions and 2 deletions
|
@ -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?"},
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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 = "";
|
||||
|
|
Loading…
Add table
Reference in a new issue