* Returns true if the index has been created.
()
| 222 | * Returns true if the index has been created. |
| 223 | */ |
| 224 | public async isCreated(): Promise<boolean> { |
| 225 | return await fs.stat(this.folderPath).then(() => true).catch(() => false); |
| 226 | } |
| 227 | |
| 228 | // LLM-REGION |
| 229 |