* Returns true if the index has been created.
()
| 173 | * Returns true if the index has been created. |
| 174 | */ |
| 175 | isCreated() { |
| 176 | return __awaiter(this, void 0, void 0, function* () { |
| 177 | return yield fs.stat(this.folderPath).then(() => true).catch(() => false); |
| 178 | }); |
| 179 | } |
| 180 | // LLM-REGION |
| 181 | /** |
| 182 | * Loads the current code index. |