(filePath: string)
| 87 | * Check if a file path is within the memdir directory. |
| 88 | */ |
| 89 | export function isAutoMemFile(filePath: string): boolean { |
| 90 | if (isAutoMemoryEnabled()) { |
| 91 | return isAutoMemPath(filePath) |
| 92 | } |
| 93 | return false |
| 94 | } |
| 95 | |
| 96 | export type MemoryScope = 'personal' | 'team' |
| 97 |
no test coverage detected