From d518d224db56441156f8a69ce5486a930b1c1ab7 Mon Sep 17 00:00:00 2001 From: henrique Date: Fri, 23 Aug 2024 17:18:42 -0300 Subject: [PATCH] fix(all): Image generation fixing. --- packages/gpt.gblib/services/ImageServices.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gpt.gblib/services/ImageServices.ts b/packages/gpt.gblib/services/ImageServices.ts index 970c3241..8ea2bd3c 100644 --- a/packages/gpt.gblib/services/ImageServices.ts +++ b/packages/gpt.gblib/services/ImageServices.ts @@ -68,7 +68,7 @@ export class ImageServices { }); const gbaiName = DialogKeywords.getGBAIPath(min.botId); - const localName = Path.join('work', gbaiName, 'cache', `img${GBAdminService.getRndReadableIdentifier()}.png`); + const localName = Path.join('work', gbaiName, 'cache', `DALL-E${GBAdminService.getRndReadableIdentifier()}.png`); const url = response.data[0].url; const res = await fetch(url);