Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(client): support response URL for Azure #387

Merged
merged 7 commits into from
Apr 4, 2025

Conversation

mssfang
Copy link
Contributor

@mssfang mssfang commented Apr 2, 2025

  • Azure URL always include the openai path segment, but not all API endpoints use the deployments name. Therefore, the openai path segment should always be added when the URL is an Azure URL, but the deployments path segment should be optional.

  • The /response Azure API doesn't use deployments (or model name) in the path segment.

  • Added a new Azure Service version to AzureOpenAIServiceVersion enum. The /response endpoint requires version 2025-03-01-preview or above. Users should manually assign the service version when making requests to /response as Azure /response is not GA yet.

   OpenAIClient client = OpenAIOkHttpClient.builder()
            .azureServiceVersion(AzureOpenAIServiceVersion.latestPreviewVersion())
            // Gets the API key from the `AZURE_OPENAI_KEY` environment variable
            .baseUrl(System.getenv("AZURE_OPENAI_ENDPOINT"))
            // Set the Azure Entra ID
            .credential(BearerTokenCredential.create(AuthenticationUtil.getBearerTokenSupplier(
                new DefaultAzureCredentialBuilder().build(), "https://cognitiveservices.azure.com/.default")))
            .build();
  • Bugfix: The changes in the ClientOptions ensure that the assigned AzureOpenAIServiceVersion value is copied to the new instance of the ClientOptions.

fixes: #371

@mssfang mssfang changed the title [Azure] Response URL support fix(client): support response URL for Azure Apr 2, 2025
@TomerAberbach
Copy link
Collaborator

This makes sense

Let me know once you've confirmed it's correct!

@mssfang mssfang marked this pull request as ready for review April 3, 2025 22:01
@mssfang mssfang requested a review from a team as a code owner April 3, 2025 22:01
@mssfang
Copy link
Contributor Author

mssfang commented Apr 3, 2025

@TomerAberbach can you have a look at this PR when you have time. It is all good now

@mssfang mssfang requested a review from TomerAberbach April 4, 2025 03:38
@TomerAberbach TomerAberbach merged commit f7f09aa into openai:next Apr 4, 2025
2 of 3 checks passed
@stainless-app stainless-app bot mentioned this pull request Apr 4, 2025
TomerAberbach pushed a commit that referenced this pull request Apr 4, 2025
* fix(client): support responses API for Azure (#387)

* response url support

* add the missing azureServiceVersion param

* add new Azure OpenAI service API version

* update async client as well

* Spotless: format

* address feedbacks

* release: 0.44.2

---------

Co-authored-by: Shawn Fang <[email protected]>
Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
@mssfang mssfang deleted the Azure-ResponseURL branch April 4, 2025 17:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants