diff --git a/agixt/Interactions.py b/agixt/Interactions.py index 292bcdbe7a96..32e828b83962 100644 --- a/agixt/Interactions.py +++ b/agixt/Interactions.py @@ -56,20 +56,8 @@ def __init__( ApiClient=self.ApiClient, user=self.user, ) - self.positive_feedback_memories = Memories( - agent_name=self.agent_name, - agent_config=self.agent.AGENT_CONFIG, - collection_number="2", - ApiClient=self.ApiClient, - user=self.user, - ) - self.negative_feedback_memories = Memories( - agent_name=self.agent_name, - agent_config=self.agent.AGENT_CONFIG, - collection_number="3", - ApiClient=self.ApiClient, - user=self.user, - ) + self.positive_feedback_memories = self.agent_memory + self.negative_feedback_memories = self.agent_memory self.outputs = f"{self.uri}/outputs/{self.agent.agent_id}" else: self.agent_name = "" diff --git a/docker-requirements.txt b/docker-requirements.txt index 3ddcac606c12..09eb7bbe523f 100644 --- a/docker-requirements.txt +++ b/docker-requirements.txt @@ -1 +1,2 @@ -pgvector \ No newline at end of file +pgvector +pyodbc \ No newline at end of file