-
Notifications
You must be signed in to change notification settings - Fork 3.9k
feat (provider/azure): add OpenAI responses API support #5461
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
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
5d4a201
add support for responses api in azure
AVtheking 20ae3d6
Merge branch 'main' into feat/azure-responses-api
AVtheking 2279463
tested end-to-end
AVtheking 12840c3
Merge branch 'main' into feat/azure-responses-api
AVtheking e1c3d3d
Merge branch 'main' into feat/azure-responses-api
AVtheking cec3cc8
doc for azure responses api
AVtheking 8d64fe8
Merge branch 'main' into feat/azure-responses-api
AVtheking 7383627
test fixes
AVtheking e1d5d74
Merge branch 'main' into feat/azure-responses-api
AVtheking File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@ai-sdk/azure': patch | ||
| --- | ||
|
|
||
| feat (provider/azure): add OpenAI responses API support |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| import { createAzure } from '@ai-sdk/azure'; | ||
| import { generateText } from 'ai'; | ||
| import 'dotenv/config'; | ||
|
|
||
| // Initialize Azure OpenAI provider | ||
| const azure = createAzure({ | ||
| apiKey: process.env.AZURE_API_KEY, | ||
| baseURL: process.env.AZURE_BASE_URL, | ||
| }); | ||
|
|
||
| async function main() { | ||
| // Basic text generation | ||
| const basicResult = await generateText({ | ||
| model: azure.responses('gpt-4o-mini'), | ||
| prompt: 'What is quantum computing?', | ||
| }); | ||
|
|
||
| console.log('\n=== Basic Text Generation ==='); | ||
| console.log(basicResult.text); | ||
| } | ||
|
|
||
| main().catch(console.error); |
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The provided docs example will result in a null pointer, as the azure provider object does not export a tool property.
Results in:
TypeError: Cannot read properties of undefined (reading 'webSearchPreview')@AVtheking can you judge whether my usage example is correct? If yes, I suppose this is an issue with the provider.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes you are correct, it doesn't exports tool now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your response! Do you know any workaround to still enable such tools while using the azure provider?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would raise a PR for this to fix this, if I still has azure creds, or you can do it buddy, I can also help you
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
havent tested it yet, but I think its resolved 😄 #8238