Skip to content

Commit 6071328

Browse files
authored
Merge pull request #268183 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 111eaf0 + 2b64439 commit 6071328

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

articles/ai-services/containers/azure-kubernetes-recipe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ The following steps are needed to get the required information to connect your c
191191
1. Get your container registry ID.
192192
193193
```azurecli-interactive
194-
az acr show --resource-group cogserv-container-rg --name pattyregistry --query "id" --o table
194+
az acr show --resource-group cogserv-container-rg --name pattyregistry --query "id" --output table
195195
```
196196
197197
Save the output for the scope parameter value, `<acrId>`, in the next step. It looks like:

articles/ai-services/openai/whisper-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ echo export AZURE_OPENAI_ENDPOINT="REPLACE_WITH_YOUR_ENDPOINT_HERE" >> /etc/envi
9494

9595
::: zone pivot="programming-language-python"
9696

97-
[!INCLUDE [REST API quickstart](includes/whisper-python.md)]
97+
[!INCLUDE [Python quickstart](includes/whisper-python.md)]
9898

9999
::: zone-end
100100

articles/ai-studio/how-to/generate-data-qa.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ pip3 install azure-identity azure-ai-generative
2727
pip3 install wikipedia langchain nltk unstructured
2828
```
2929

30-
## Connect to Azure Open AI
30+
## Connect to Azure OpenAI
3131

32-
We need to connect to Azure Open AI so that we can access the LLM to generate data for us.
32+
We need to connect to Azure OpenAI so that we can access the LLM to generate data for us.
3333

3434
```python
3535
from azure.ai.resources.client import AIClient
@@ -175,7 +175,7 @@ To use the `generated_qa.jsonl` file for evaluation, you need to add this file a
175175

176176
## Generate data from files
177177

178-
Generating data from files might be more practical for large amounts of data. You can use the `generate_async()` function OF THE `QADataGenerator` to make concurrent requests to Azure Open AI for generating data from files.
178+
Generating data from files might be more practical for large amounts of data. You can use the `generate_async()` function OF THE `QADataGenerator` to make concurrent requests to Azure OpenAI for generating data from files.
179179

180180
Files might have large texts that go beyond model's context lengths. They need to be split to create smaller chunks. Moreover, they shouldn't be split mid-sentence. Such partial sentences might lead to improper QA samples. You can use LangChain's `NLTKTextSplitter` to split the files before generating data.
181181

articles/synapse-analytics/spark/tutorial-spark-pool-filesystem-spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Run the following code.
145145
146146
# Set variables
147147
local_file_name = "<local_file_name>"
148-
ADLS_Store_Path = "abfs[s]://<filesystemname>@<account name>.dfs.windows.cor.net/"+local_file_name
148+
ADLS_Store_Path = "abfs[s]://<filesystemname>@<account name>.dfs.windows.core.net/"+local_file_name
149149
150150
# Generate local file for testing
151151
with open(local_file_name, mode='w') as f:

0 commit comments

Comments
 (0)