From 7eb0632385ec40f935fb82eafee86652feca7f1c Mon Sep 17 00:00:00 2001 From: Josh XT Date: Mon, 9 Sep 2024 14:14:37 -0400 Subject: [PATCH] fix bad ref --- agixt/Agent.py | 2 +- agixt/version | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/agixt/Agent.py b/agixt/Agent.py index 78b98a5cd77..33aed129c61 100644 --- a/agixt/Agent.py +++ b/agixt/Agent.py @@ -456,7 +456,7 @@ def get_commands_string(self): command_friendly_name = command["friendly_name"] command_description = command["description"] verbose_commands += f"\n#### {command_friendly_name}\nDescription: {command_description}\nCommand execution format:" - command_args = json.dumps(command["args"]) + command_args = json.dumps(command["command_args"]) command_args = command_args.replace( '""', '"The assistant will fill in the value based on relevance to the conversation."', diff --git a/agixt/version b/agixt/version index 59978fd53b8..193fc8fe855 100644 --- a/agixt/version +++ b/agixt/version @@ -1 +1 @@ -v1.6.11 \ No newline at end of file +v1.6.12 \ No newline at end of file