(self, content, k=10)
| 71 | self.memory_system.add_note(content, time=time) |
| 72 | |
| 73 | def retrieve_memory(self, content, k=10): |
| 74 | return self.memory_system.find_related_memories_raw(content, k=k) |
| 75 | |
| 76 | def retrieve_memory_llm(self, memories_text, query): |
| 77 | prompt = f"""Given the following conversation memories and a question, select the most relevant parts of the conversation that would help answer the question. Include the date/time if available. |
no test coverage detected