| def reason(text, context): | |
| if context: | |
| return f"I found related memory: {context[0]}" | |
| return "No memory found. Reasoning independently." | |
| def reason(text, context): | |
| if context: | |
| return f"I found related memory: {context[0]}" | |
| return "No memory found. Reasoning independently." | |