Skip to content

Commit d9e223c

Browse files
committed
chore: fix typo in error message
1 parent d47ff04 commit d9e223c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ export default class BulkAiFlowPlugin extends AdminForthPlugin {
100100
chatResponse = await this.options.visionAdapter.generate({ prompt, inputFileUrls: attachmentFiles });
101101
} catch (e) {
102102
isError = true;
103-
jobs.set(jobId, { status: 'failed', error: 'AI provider refused to analize images' });
104-
return { ok: false, error: 'AI provider refused to analize images' };
103+
jobs.set(jobId, { status: 'failed', error: 'AI provider refused to analyze images' });
104+
return { ok: false, error: 'AI provider refused to analyze images' };
105105
}
106106
if (!isError) {
107107
const resp: any = (chatResponse as any).response;
@@ -678,6 +678,6 @@ export default class BulkAiFlowPlugin extends AdminForthPlugin {
678678
}
679679
});
680680

681-
681+
682682
}
683683
}

0 commit comments

Comments
 (0)