mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-07-25 01:15:24 +02:00
adding back logging
This commit is contained in:
parent
c2db0fb49e
commit
57af4f13cc
2 changed files with 3 additions and 2 deletions
|
@ -357,6 +357,7 @@ def launch_server_experiment(task_path,
|
|||
set_environment_variable_tmux_session(session_name, "PROFILES", agent_profiles_str)
|
||||
set_environment_variable_tmux_session(session_name, "MAX_MESSAGES", str(max_messages))
|
||||
set_environment_variable_tmux_session(session_name, "NUM_EXAMPLES", str(num_examples))
|
||||
set_environment_variable_tmux_session(session_name, "LOG_ALL", "true")
|
||||
if insecure_coding:
|
||||
set_environment_variable_tmux_session(session_name, "INSECURE_CODING", "true")
|
||||
make_ops(agent_names, session_name)
|
||||
|
|
|
@ -42,10 +42,10 @@ export default
|
|||
"relevant_docs_count": 5, // Parameter: -1 = all, 0 = no references, 5 = five references. If exceeding the maximum, all reference documents are returned.
|
||||
|
||||
"max_messages": process.env.MAX_MESSAGES || 15, // max number of messages to keep in context
|
||||
"num_examples": 2, // number of examples to give to the model
|
||||
"num_examples": process.env.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
|
||||
"verbose_commands": true, // show full command syntax
|
||||
"narrate_behavior": true, // chat simple automatic actions ('Picking up item!')
|
||||
"chat_bot_messages": true, // publicly chat messages to other bots
|
||||
"log_all_prompts": false, // log all prompts to file
|
||||
"log_all_prompts": process.env.LOG_ALL || true, // log all prompts to file
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue