From dd4328cfe0615f9402fe7ba16dbe88b763e815ba Mon Sep 17 00:00:00 2001 From: Josh XT Date: Sat, 30 Sep 2023 02:03:33 -0400 Subject: [PATCH] Add prompt category to prompt_agent --- agixt/Interactions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/agixt/Interactions.py b/agixt/Interactions.py index 5cd378db5463..9ad2fb20ba36 100644 --- a/agixt/Interactions.py +++ b/agixt/Interactions.py @@ -471,6 +471,7 @@ async def run( "user_input": user_input, "context_results": context_results, "conversation_name": conversation_name, + "prompt_category": prompt_category, **kwargs, }, ) @@ -509,6 +510,7 @@ async def run( "context_results": context_results, "conversation_name": conversation_name, "disable_memory": disable_memory, + "prompt_category": prompt_category, **kwargs, }, )