From b7f1df3e1d397edb4f3a7168a929dc762280f597 Mon Sep 17 00:00:00 2001 From: Reinier van der Leer Date: Mon, 31 Jul 2023 01:21:09 +0200 Subject: [PATCH] Fix execute_shell_popen --- autogpt/commands/execute_code.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autogpt/commands/execute_code.py b/autogpt/commands/execute_code.py index 30e1e27e..3d52eb0a 100644 --- a/autogpt/commands/execute_code.py +++ b/autogpt/commands/execute_code.py @@ -255,9 +255,9 @@ def execute_shell(command_line: str, agent: Agent) -> str: "execute_shell_popen", "Executes a Shell Command, non-interactive commands only", { - "query": { + "command_line": { "type": "string", - "description": "The search query", + "description": "The command line to execute", "required": True, } },