You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You'll need to upgrade your OpenAI client library for access to the latest parameters.
123
+
You might need to upgrade your version of the OpenAI Python library to take advantage of the new parameters like `max_completion_tokens`.
124
124
125
125
```cmd
126
126
pip install openai --upgrade
127
127
```
128
128
129
-
If you're new to using Microsoft Entra ID for authentication see [How to configure Azure OpenAI in Azure AI Foundry Models with Microsoft Entra ID authentication](../how-to/managed-identity.md).
You might need to upgrade your version of the OpenAI Python library to take advantage of the new parameters like `max_completion_tokens`.
152
+
You'll need to upgrade your OpenAI client library for access to the latest parameters.
160
153
161
154
```cmd
162
155
pip install openai --upgrade
163
156
```
164
157
165
-
```python
158
+
If you're new to using Microsoft Entra ID for authentication see [How to configure Azure OpenAI in Azure AI Foundry Models with Microsoft Entra ID authentication](../how-to/managed-identity.md).
166
159
160
+
```python
167
161
from openai import AzureOpenAI
162
+
from azure.identity import DefaultAzureCredential, get_bearer_token_provider
You'll need to upgrade your OpenAI client library for access to the latest parameters.
329
+
You might need to upgrade your version of the OpenAI Python library to take advantage of the new parameters like `max_completion_tokens`.
331
330
332
331
```cmd
333
332
pip install openai --upgrade
334
333
```
335
334
336
-
If you're new to using Microsoft Entra ID for authentication see [How to configure Azure OpenAI with Microsoft Entra ID authentication](../how-to/managed-identity.md).
337
-
338
335
```python
339
-
from openai import AzureOpenAI
340
-
from azure.identity import DefaultAzureCredential, get_bearer_token_provider
You might need to upgrade your version of the OpenAI Python library to take advantage of the new parameters like `max_completion_tokens`.
359
+
You'll need to upgrade your OpenAI client library for access to the latest parameters.
369
360
370
361
```cmd
371
362
pip install openai --upgrade
372
363
```
373
364
374
-
```python
365
+
If you're new to using Microsoft Entra ID for authentication see [How to configure Azure OpenAI with Microsoft Entra ID authentication](../how-to/managed-identity.md).
375
366
367
+
```python
376
368
from openai import AzureOpenAI
369
+
from azure.identity import DefaultAzureCredential, get_bearer_token_provider
0 commit comments