Merge branch 'shellcommands' of github.com:muellerberndt/Auto-GPT into shellcommands

This commit is contained in:
Bernhard Mueller
2023-04-12 23:47:16 +07:00

View File

@@ -107,7 +107,7 @@ def execute_command(command_name, arguments):
if cfg.execute_local_commands:
return exec_shell(arguments["command_line"])
else:
return "You are not allowed to run local shell commands. To execute shell commands, EXECUTE_SHELL_COMMANDS must be set to 'True' in your config. Do not attempt to bypass the restriction."
return "You are not allowed to run local shell commands. To execute shell commands, EXECUTE_LOCAL_COMMANDS must be set to 'True' in your config. Do not attempt to bypass the restriction."
elif command_name == "generate_image":
return generate_image(arguments["prompt"])
elif command_name == "do_nothing":