(uuid: string)
| 205 | } |
| 206 | |
| 207 | export async function getFile(uuid: string) { |
| 208 | const fileMap = await getFileMappingByUuid(uuid); |
| 209 | if (fileMap?.opfs) { |
| 210 | const file = openFile(fileMap.opfs); |
| 211 | return file; |
| 212 | } |
| 213 | } |
| 214 | |
| 215 | export function findAllFilesInTasks(taskList: LLMTask[]): string[] { |
| 216 | const fileSet = new Set<string>(); |
nothing calls this directly
no test coverage detected