Hi, I am trying to use the crewai’s in-built memory feature but it is giving me an error while adding and searching.
Crewai version: 0.86.0
OS: Windows 11
pyhton: 3.12.6
@crew
def crew(self) -> Crew:
return Crew(
agents=self.agents,
tasks=self.tasks,
manager_llm=LLM(temperature=0, model="claude-3-haiku-20240307"),
process=Process.hierarchical,
memory=True,
verbose=True
)
ERROR:root:Error during short_term save: APIStatusError.__init__() missing 2 required keyword-only arguments: 'response' and 'body'
ERROR:root:Error during entities save: APIStatusError.__init__() missing 2 required keyword-only arguments: 'response' and 'body'
ERROR:root:Error during entities save: APIStatusError.__init__() missing 2 required keyword-only arguments: 'response' and 'body'
ERROR:root:Error during entities save: APIStatusError.__init__() missing 2 required keyword-only arguments: 'response' and 'body'
ERROR:root:Error during short_term search: APIStatusError.__init__() missing 2 required keyword-only arguments: 'response' and 'body'
ERROR:root:Error during entities search: APIStatusError.__init__() missing 2 required keyword-only arguments: 'response' and 'body'