Replies: 1 comment 4 replies
-
@Uralstech I just want to confirm, that when you use OpenAI you get a new image? When you use Azure it is the same image from the previous request? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Bug Report
Overview
I was trying DALL-E 3 on Azure OpenAI, and it seems there is a problem with the download caching.
The first time I run an image generation request it returns the image correctly. After that, any query returns that same image. When I clear the cache for my app, it generates a new image, then every subsequent query returns that.
When I call
Rest.DeleteDownloadCache();
before each query it works every time. Strangely, this issue is only there for Azure OpenAI requests and not for normal OpenAI DALL-E 3 requests.This is part of the code I'm using:
The GenerateImage method is called by my GPT-4o powered assistant as a function call. I have only tried this on Android, on my S10 running Android 12. I'm using Unity 2022.3.38f1.
Beta Was this translation helpful? Give feedback.
All reactions