(filePath: string)
| 29 | // Track files that have been read in the current session |
| 30 | export const readFilesSet = new Set<string>(); |
| 31 | export function markFileAsRead(filePath: string) { |
| 32 | readFilesSet.add(filePath); |
| 33 | } |
| 34 | |
| 35 | export const readFileTool: Tool = { |
| 36 | name: "Read", |
no test coverage detected