(filePath: string)
| 131 | } |
| 132 | |
| 133 | async function checkFileExists(filePath: string): Promise<boolean> { |
| 134 | try { |
| 135 | await fs.access(filePath); |
| 136 | return true; |
| 137 | } catch { |
| 138 | return false; |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | async function createBaseAIDirectories(): Promise<void> { |
| 143 | const baseaiFolder = path.join(process.cwd(), 'baseai'); |
no outgoing calls
no test coverage detected