Merge pull request #575 from onekum/do_nothing

Add a `do_nothing` command
This commit is contained in:
Toran Bruce Richards
2023-04-10 07:26:53 +01:00
committed by GitHub
2 changed files with 4 additions and 1 deletions

View File

@@ -106,6 +106,8 @@ def execute_command(command_name, arguments):
return execute_python_file(arguments["file"])
elif command_name == "generate_image":
return generate_image(arguments["prompt"])
elif command_name == "do_nothing":
return "No action performed."
elif command_name == "task_complete":
shutdown()
else:
@@ -283,4 +285,4 @@ def delete_agent(key):
result = agents.delete_agent(key)
if not result:
return f"Agent {key} does not exist."
return f"Agent {key} deleted."
return f"Agent {key} deleted."

View File

@@ -24,6 +24,7 @@ COMMANDS:
18. Execute Python File: "execute_python_file", args: "file": "<file>"
19. Task Complete (Shutdown): "task_complete", args: "reason": "<reason>"
20. Generate Image: "generate_image", args: "prompt": "<prompt>"
21. Do Nothing; command name: "do_nothing", args: ""
RESOURCES: