An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
Connection timeout when using ChatMessageImageContentItem and AzureSearchChatExtensionConfiguration
I have a chat client application utilizing Azure Open AI java SDK. Our use case is to query the OpenAI LLM by sending image as context along with user message and also use RAG data in the query.
The application invokes getChatCompletions endpoint using text user message and Azure AI Search options to the Chat (RAG). This works fine until I start using an image along with text user messages. When adding ChatMessageImageContentItem into the mix, the connection times out. We are including the image as a data URL with base64 encoding. As a test we tried to query the LLM using image and text user content without Azure AI Search options and it works fine. As soon as we mix image+text in the chat completiong with RAG search options, we run into the time out.
Looking for some guidance on what could be wrong with the strategy here.