recall method
Implementation
Future<MemoryRecallResult> recall({
required String name,
required String query,
List<String>? namespace,
int limit = 5,
bool includeRelationships = true,
}) async {
final response = await _invokeJson("recall", {
"name": name,
"namespace": namespace,
"query": query,
"limit": limit,
"include_relationships": includeRelationships,
});
return MemoryRecallResult.fromJson(response.json);
}