(memory: unknown)
| 12 | } |
| 13 | |
| 14 | const getMemoryId = (memory: unknown): string | undefined => |
| 15 | isRecordLike(memory) && typeof memory.id === 'string' ? memory.id : undefined |
| 16 | |
| 17 | /** |
| 18 | * Get Memories Tool |
nothing calls this directly
no test coverage detected