feat: support LLM from Azure (Azure OpenAI, Azure AI Foundry)#4222
Merged
feat: support LLM from Azure (Azure OpenAI, Azure AI Foundry)#4222
Conversation
- Add Azure OpenAI provider using @ai-sdk/azure (createAzure) - Add Azure AI Foundry provider using OpenAI-compatible API for Claude and other models - Add model listing for both providers with appropriate API headers - Add provider context help text in settings UI - Use Azure and AzureAI icons from @lobehub/icons Closes #3928 Co-Authored-By: John <john@hyprnote.com>
Contributor
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
✅ Deploy Preview for hyprnote canceled.
|
✅ Deploy Preview for hyprnote-storybook canceled.
|
Co-Authored-By: John <john@hyprnote.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
feat: add Azure OpenAI and Azure AI Foundry LLM provider support
Closes #3928
Summary
Adds two new LLM providers to the desktop settings:
@ai-sdk/azurepackage (createAzure) for chat completions. Model listing hits{baseUrl}/openai/models?api-version=2024-10-21withapi-keyheader auth.@ai-sdk/openai-compatiblefor models deployed via Azure AI Foundry (Claude, etc.). Model listing hits{baseUrl}/modelswithapi-keyheader auth.Both providers require
base_urlandapi_keyconfiguration. UsesAzureandAzureAIicons from@lobehub/icons. No new packages were added —@ai-sdk/azurewas already a dependency.Both providers are marked with a Beta badge since they haven't been tested with real Azure credentials. Each provider's configuration panel includes a subtle "Report issues" link back to #3928.
Files changed:
shared.tsx— provider definitions, icons, Beta badgesuseLLMConnection.ts—createLanguageModelswitch casesselect.tsx— model listing wiringconfigure.tsx— help text with issue link for settings UIlist-azure-openai.ts/list-azure-ai.ts— new model listing functionsReview & Testing Checklist for Human
azure_aiauth headers: ThecreateOpenAICompatiblecall sets bothapiKey(sendsAuthorization: Bearer) AND a customapi-keyheader. Verify Azure AI Foundry accepts this dual-header setup, or if theAuthorizationheader needs to be suppressed.AzureOpenAIModelSchema,AzureAIDeploymentSchema) are based on docs — verify they match real Azure responses by testing with actual Azure credentials.api-version=2024-10-21is hardcoded in the Azure OpenAI model listing URL. Confirm this is acceptable or if it should be configurable.Notes