Shawn Fang
                                            Shawn Fang
                                        
                                    Is possible we can have a sample code from your side that can use to reproduce the issue? I have tried to use following codesnippet to reproduce the issue but...
@hind214875 Glad to see that works. BTW, we have a new beta, [beta.7](https://mvnrepository.com/artifact/com.azure/azure-ai-openai) released that includes some breaking change and new features Text-to-Speech.
The version we should use is a version after 1.24.1
Closed this issue as it is not related to SDK issue
Hi, @sravanthi-tl Thank you for letting us know about this. I have tested by using OpenAI cookbook parallel tool call sample: https://platform.openai.com/docs/guides/function-calling/parallel-function-calling Find if I use "gpt-35-turbo-1106", a simple one...
Hi, @fengsuxing Sorry to replay it late. I just get back from my vocation. We do support DALL-E ("dall-e-2" or "dall-e-3") in the SDK. Wondering which region of Azure source...
@fengsuxing You can try to use this [sample](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/openai/azure-ai-openai/src/samples/java/com/azure/ai/openai/usage/GetImagesSample.java#L23) in the repo ``` OpenAIClient client = new OpenAIClientBuilder() .credential(new KeyCredential("your-openai-key-here")) .buildClient(); ``` For Azure Resource, you can create DALL-E-3(dall-2 is in...
Hi @junan-trustarc Unfortunately, we will not support non-OpenAI models in this SDK, azure-ai-openai as per our partnership with OpenAI. The most major models are available as first-class Azure Host Endpoints,...
Hi @sravanthi-tl As I know, Azure OpenAI supports those listed versions at current stage. https://github.com/Azure/azure-rest-api-specs/blob/main/specification/cognitiveservices/OpenAI.Inference/main.tsp#L43 And the service retires older versions described in https://learn.microsoft.com/en-us/azure/ai-services/openai/api-version-deprecation I think you may be confused...
@ryangsun you can check out version, `1.0.0-beta.8`, which includes the base64 format https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/openai/azure-ai-openai/CHANGELOG.md#features-added-1 Sample: https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/openai/azure-ai-openai/src/samples/java/com/azure/ai/openai/usage/GetEmbeddingsSample.java#L42