-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
[BUG] GetRealtimeConversationClient fails with ApiKeyCredential #47535
Comments
Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @jpalvarezl @ralph-msft @trrwilson. |
Hello everyone. Any update on this? Facing same issue right now |
@tom-b-iodigital Any workaround for this? |
I just use the beta 2 version of the Azure.AI.OpenAI and the 2.1.0 version of the openai package. That seems to work fine.
|
Oh okay, thank you @tom-b-iodigital.
|
They have removed the azure OpenAI credentialing overrides for the 2.1.0 release version when using realtime which forces it to try to fallback to the regular OpenAI endpoints which aren't setup when you initialize in this manner. Is this being left out by intention for the team because it is a final release or was this a mistake? |
So this is still completely borked now? _tokenCredential is completely ignored and keyCredential is used exclusively now? Where are the regression tests? |
Yes, this is certainly still a bug that needs to be addressed. When you try targeting NuGet package var client = new AzureOpenAIClient(endpoint, new AzureKeyCredential(key));
// This throws
var conversationClient = client.GetRealtimeConversationClient("gpt-4o-realtime-preview"); The exception is:
I experienced this too, the workaround as suggested by @tom-b-iodigital does work: <PackageReference Include="Azure.AI.OpenAI" Version="2.1.0-beta.2" />
<PackageReference Include="OpenAI" Version="2.1.0" /> Hopefully this is fixed in the next release. /cc @trrwilson FYI. |
Any plans for fixing this bug? |
Library name and version
Azure.AI.OpenAI 2.1.0
Describe the bug
Starting from version 2.1.0 the following code will fail:
By throwing an exception with message: Value cannot be null. (Parameter 'credential')
In version 2.1.0-beta2 this still worked.
Expected behavior
A realtime conversaton client should be available after the function call without throwing an exception.
Actual behavior
Exception with message 'Value cannot be null. (Parameter 'credential')' is thrown
Reproduction Steps
Add following nuget packages to your project:
Use the code below to reproduce (replace the x's with actual values):
Replace the nuget packages to observe the correct behavior
Environment
No response
The text was updated successfully, but these errors were encountered: