(modelId: string, error: string)
| 231 | |
| 232 | // Handle download error |
| 233 | handleDownloadError(modelId: string, error: string): void { |
| 234 | this.emitProgress({ |
| 235 | modelId: modelId, |
| 236 | progress: 0, |
| 237 | stage: 'error', |
| 238 | message: 'Download failed', |
| 239 | error: error, |
| 240 | }); |
| 241 | } |
| 242 | |
| 243 | // Get recommended models for cleanup |
| 244 | getRecommendedCleanup(): LocalModel[] { |
no test coverage detected