Skip to content

Commit afeb7d1

Browse files
authored
Merge pull request #3800 from MicrosoftDocs/main
3/28/2025 AM Publish
2 parents cd4d4d7 + b36b0d0 commit afeb7d1

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

articles/ai-services/document-intelligence/how-to-guides/includes/v3-0/rest-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ The cURL command line tool doesn't format API responses that contain JSON conten
9898

9999
#### [Windows](#tab/windows)
100100

101-
Use the NodeJS *json tool* as a JSON formatter for cURL. If you don't have [Node.js](https://nodejs.org/) installed, download and install the latest version.
101+
Use the Node.js *json tool* as a JSON formatter for cURL. If you don't have [Node.js](https://nodejs.org/) installed, download and install the latest version.
102102

103103
1. Open a console window and install the json tool by using the following command:
104104

articles/ai-services/document-intelligence/how-to-guides/includes/v4-0/rest-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ The cURL command line tool doesn't format API responses that contain JSON conten
9090

9191
#### [Windows](#tab/windows)
9292

93-
Use the NodeJS *json tool* as a JSON formatter for cURL. If you don't have [Node.js](https://nodejs.org/) installed, download and install the latest version.
93+
Use the Node.js *json tool* as a JSON formatter for cURL. If you don't have [Node.js](https://nodejs.org/) installed, download and install the latest version.
9494

9595
1. Open a bash window and install the json tool by using the following command:
9696

articles/ai-services/openai/how-to/computer-use.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ response_2 = client.responses.create(
220220
model="computer-use-preview",
221221
previous_response_id=response.id,
222222
tools=[{
223-
"type": "computer-preview",
223+
"type": "computer_use_preview",
224224
"display_width": 1024,
225225
"display_height": 768,
226226
"environment": "browser" # other possible values: "mac", "windows", "ubuntu"

articles/ai-services/openai/how-to/responses.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ response = client.responses.retrieve("resp_67cb61fa3a448190bcf2c42d96f0d1a8")
245245
### Microsoft Entra ID
246246

247247
```bash
248-
curl -X GET "https://YOUR-RESOURCE-NAME.openai.azure.com/openai/{response_id}?api-version=2025-03-01-preview" \
248+
curl -X GET "https://YOUR-RESOURCE-NAME.openai.azure.com/openai/responses/{response_id}?api-version=2025-03-01-preview" \
249249
-H "Content-Type: application/json" \
250250
-H "Authorization: Bearer $AZURE_OPENAI_AUTH_TOKEN"
251251
```
@@ -441,7 +441,7 @@ inputs = [{"type": "message", "role": "user", "content": "Define and explain the
441441

442442
response = client.responses.create(
443443
model="gpt-4o", # replace with your model deployment name
444-
input="inputs"
444+
input=inputs
445445
)
446446

447447
inputs += response.output
@@ -451,7 +451,6 @@ inputs.append({"role": "user", "type": "message", "content": "Explain this at a
451451

452452
second_response = client.responses.create(
453453
model="gpt-4o",
454-
previous_response_id=response.id,
455454
input=inputs
456455
)
457456

@@ -507,7 +506,7 @@ for output in response.output:
507506
input.append(
508507
{
509508
"type": "function_call_output",
510-
"call_id": output.id,
509+
"call_id": output.call_id,
511510
"output": '{"temperature": "70 degrees"}',
512511
}
513512
)

articles/ai-services/speech-service/includes/release-notes/release-notes-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,9 +368,9 @@ This table shows the previous and new object names for real-time diarization and
368368

369369
* [New JavaScript meeting transcription quickstart](https://github.com/Azure-Samples/cognitive-services-speech-sdk/blob/master/quickstart/javascript/browser/meeting-transcription/README.md)
370370

371-
* [New NodeJS conversation transcription quickstart](https://github.com/Azure-Samples/cognitive-services-speech-sdk/blob/master/quickstart/javascript/node/conversation-transcription/README.md)
371+
* [New Node.js conversation transcription quickstart](https://github.com/Azure-Samples/cognitive-services-speech-sdk/blob/master/quickstart/javascript/node/conversation-transcription/README.md)
372372

373-
* [New NodeJS meeting transcription quickstart](https://github.com/Azure-Samples/cognitive-services-speech-sdk/blob/master/quickstart/javascript/node/meeting-transcription/README.md)
373+
* [New Node.js meeting transcription quickstart](https://github.com/Azure-Samples/cognitive-services-speech-sdk/blob/master/quickstart/javascript/node/meeting-transcription/README.md)
374374

375375
### Speech SDK 1.30.0: July 2023 release
376376

articles/machine-learning/data-science-virtual-machine/release-notes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ Primary changes:
506506
- Changed Intellijidea to version 2021.2.3
507507
- Changed NVIDIA Drivers to version 470.103.01
508508
- Changed NVIDIA SMI to version 470.103.01
509-
- Changed Nodejs to version v16.13.0
509+
- Changed Node.js to version v16.13.0
510510
- Changed Pycharm to version 2021.2.3
511511
- Changed VS Code to version 1.61.2
512512
- Conda
@@ -537,7 +537,7 @@ Primary changes:
537537
- Changed pytorch to version 1.9.1
538538
- Changed Docker to version 20.10.9
539539
- Changed Intellijidea to version 2021.2.2
540-
- Changed Nodejs to version v14.18.0
540+
- Changed Node.js to version v14.18.0
541541
- Changed Pycharm to version 2021.2.2
542542
- Changed VS Code to version 1.60.2
543543
- Fixed AutoML environment (azureml_py36_automl)
@@ -613,7 +613,7 @@ Selected version updates include:
613613
- Julia 1.0.5
614614
- Jupyter Lab 2.2.6
615615
- Microsoft Edge browser
616-
- NodeJS 16.2.0
616+
- Node.js 16.2.0
617617
- Power BI Desktop 2.93.641.0 64-bit (May 2021)
618618
- PyCharm Community Edition 2021.1.1
619619
- Python 3.8

articles/search/cognitive-search-how-to-debug-skillset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ Tunnelmole is an open source tunneling tool that can create a public URL that fo
176176
+ npm: `npm install -g tunnelmole`
177177
+ Linux: `curl -s https://tunnelmole.com/sh/install-linux.sh | sudo bash`
178178
+ Mac: `curl -s https://tunnelmole.com/sh/install-mac.sh --output install-mac.sh && sudo bash install-mac.sh`
179-
+ Windows: Install by using npm. Or if you don't have NodeJS installed, download the [precompiled .exe file for Windows](https://tunnelmole.com/downloads/tmole.exe) and put it somewhere in your PATH.
179+
+ Windows: Install by using npm. Or if you don't have Node.js installed, download the [precompiled .exe file for Windows](https://tunnelmole.com/downloads/tmole.exe) and put it somewhere in your PATH.
180180

181181
1. Run this command to create a new tunnel:
182182

0 commit comments

Comments
 (0)