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
Copy file name to clipboardExpand all lines: articles/ai-studio/quickstarts/get-started-code.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -161,7 +161,7 @@ Your AI services endpoint and deployment name are required to call the Azure Ope
161
161
```
162
162
AZURE_OPENAI_ENDPOINT=endpoint_value
163
163
AZURE_OPENAI_CHAT_DEPLOYMENT=chat_deployment_name
164
-
AZURE_OPENAI_API_VERSION=api_version (such as "2024-02-15-preview")
164
+
AZURE_OPENAI_API_VERSION=api_version
165
165
```
166
166
167
167
1. Navigate to the [chat playground inside of your AI Studio project](./get-started-playground.md#chat-in-the-playground-without-your-data). First validate that chat is working with your model by sending a message to the LLM.
@@ -174,7 +174,7 @@ Your AI services endpoint and deployment name are required to call the Azure Ope
174
174
175
175
:::image type="content" source="../media/quickstarts/promptflow-sdk/playground-copy-endpoint.png" alt-text="Screenshot of the view code popup highlighting the button to copy the endpoint value." lightbox="../media/quickstarts/promptflow-sdk/playground-copy-endpoint.png":::
176
176
177
-
1. In the ```.env``` file, replace ```endpoint_value``` with the endpoint value and replace ```api_version``` with the API version copied from the dialog in the previous step.
177
+
1. In the ```.env``` file, replace ```endpoint_value``` with the endpoint value and replace ```api_version``` with the API version copied from the dialog in the previous step (such as "2024-02-15-preview").
178
178
179
179
> [!WARNING]
180
180
> Key based authentication is supported but isn't recommended by Microsoft. If you want to use keys you can add your key to the ```.env```, but please ensure that your ```.env``` is in your ```.gitignore``` file so that you don't accidentally check it into your git repository.
0 commit comments