Skip to content

Commit 547ba49

Browse files
committed
Fixed typos
1 parent ae06b06 commit 547ba49

File tree

3 files changed

+26
-24
lines changed

3 files changed

+26
-24
lines changed

articles/search/tutorial-document-extraction-image-verbalization.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ For authenticated connections that occur during indexer and skillset processing,
119119
@openAIKey = PUT-YOUR-OPENAI-KEY-HERE
120120
@chatCompletionResourceUri = PUT-YOUR-CHAT-COMPLETION-URI-HERE
121121
@chatCompletionKey = PUT-YOUR-CHAT-COMPLETION-KEY-HERE
122-
@imageProjectionContainer=PUT-YOUR-IMAGE-PROJECTION-CONTAINER-HERE
122+
@imageProjectionContainer=sustainable-ai-pdf-images
123123
```
124124

125125
1. Save the file using a `.rest` or `.http` file extension. For help with the REST client, see [Quickstart: Full-text search using REST](search-get-started-text.md).
@@ -293,7 +293,7 @@ POST {{searchUrl}}/indexes?api-version=2025-05-01-preview HTTP/1.1
293293
{
294294
"name": "hnsw",
295295
"algorithm": "defaulthnsw",
296-
"vectorizer": "{{vectorizer}}"
296+
"vectorizer": "demo-vectorizer"
297297
}
298298
],
299299
"algorithms": [
@@ -309,7 +309,7 @@ POST {{searchUrl}}/indexes?api-version=2025-05-01-preview HTTP/1.1
309309
],
310310
"vectorizers": [
311311
{
312-
"name": "{{vectorizer}}",
312+
"name": "demo-vectorizer",
313313
"kind": "azureOpenAI",
314314
"azureOpenAIParameters": {
315315
"resourceUri": "{{openAIResourceUri}}",
@@ -497,7 +497,7 @@ POST {{searchUrl}}/skillsets?api-version=2025-05-01-preview HTTP/1.1
497497
{
498498
"@odata.type": "#Microsoft.Skills.Util.ShaperSkill",
499499
"name": "shaper-skill",
500-
"description": "Shaper skill to reshape the data to fit the index schema"
500+
"description": "Shaper skill to reshape the data to fit the index schema",
501501
"context": "/document/normalized_images/*",
502502
"inputs": [
503503
{
@@ -536,7 +536,7 @@ POST {{searchUrl}}/skillsets?api-version=2025-05-01-preview HTTP/1.1
536536
"indexProjections": {
537537
"selectors": [
538538
{
539-
"targetIndexName": "{{index}}",
539+
"targetIndexName": "doc-extraction-image-verbalization-index",
540540
"parentKeyFieldName": "text_document_id",
541541
"sourceContext": "/document/pages/*",
542542
"mappings": [
@@ -555,7 +555,7 @@ POST {{searchUrl}}/skillsets?api-version=2025-05-01-preview HTTP/1.1
555555
]
556556
},
557557
{
558-
"targetIndexName": "{{index}}",
558+
"targetIndexName": "doc-extraction-image-verbalization-index",
559559
"parentKeyFieldName": "image_document_id",
560560
"sourceContext": "/document/normalized_images/*",
561561
"mappings": [
@@ -588,6 +588,7 @@ POST {{searchUrl}}/skillsets?api-version=2025-05-01-preview HTTP/1.1
588588
},
589589
"knowledgeStore": {
590590
"storageConnectionString": "{{storageConnection}}",
591+
"identity": null,
591592
"projections": [
592593
{
593594
"files": [

articles/search/tutorial-document-layout-image-verbalization.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ For authenticated connections that occur during indexer and skillset processing,
136136
@openAIKey = PUT-YOUR-OPENAI-KEY-HERE
137137
@chatCompletionResourceUri = PUT-YOUR-CHAT-COMPLETION-URI-HERE
138138
@chatCompletionKey = PUT-YOUR-CHAT-COMPLETION-KEY-HERE
139-
@imageProjectionContainer=PUT-YOUR-IMAGE-PROJECTION-CONTAINER-HERE
139+
@imageProjectionContainer=sustainable-ai-pdf-images
140140
```
141141

142142
1. Save the file using a `.rest` or `.http` file extension. For help with the REST client, see [Quickstart: Full-text search using REST](search-get-started-text.md).
@@ -311,7 +311,7 @@ POST {{searchUrl}}/indexes?api-version=2025-05-01-preview HTTP/1.1
311311
{
312312
"name": "hnsw",
313313
"algorithm": "defaulthnsw",
314-
"vectorizer": "{{vectorizer}}"
314+
"vectorizer": "demo-vectorizer"
315315
}
316316
],
317317
"algorithms": [
@@ -327,12 +327,12 @@ POST {{searchUrl}}/indexes?api-version=2025-05-01-preview HTTP/1.1
327327
],
328328
"vectorizers": [
329329
{
330-
"name": "{{vectorizer}}",
330+
"name": "demo-vectorizer",
331331
"kind": "azureOpenAI",
332332
"azureOpenAIParameters": {
333333
"resourceUri": "{{openAIResourceUri}}",
334334
"deploymentId": "text-embedding-3-large",
335-
"searchApiKey": "{{openAIKey}}",
335+
"apiKey": "{{openAIKey}}",
336336
"modelName": "text-embedding-3-large"
337337
}
338338
}
@@ -381,6 +381,7 @@ POST {{searchUrl}}/skillsets?api-version=2025-05-01-preview HTTP/1.1
381381
api-key: {{searchApiKey}}
382382
383383
{
384+
"name": "doc-intelligence-image-verbalization-skillset",
384385
"description": "A sample skillset for multi-modality using image verbalization",
385386
"skills": [
386387
{
@@ -432,15 +433,15 @@ POST {{searchUrl}}/skillsets?api-version=2025-05-01-preview HTTP/1.1
432433
],
433434
"resourceUri": "{{openAIResourceUri}}",
434435
"deploymentId": "text-embedding-3-large",
435-
"searchApiKey": "",
436+
"apiKey": "{{openAIKey}}",
436437
"dimensions": 3072,
437438
"modelName": "text-embedding-3-large"
438439
},
439440
{
440441
"@odata.type": "#Microsoft.Skills.Custom.ChatCompletionSkill",
441442
"uri": "{{chatCompletionResourceUri}}",
442443
"timeout": "PT1M",
443-
"searchApiKey": "",
444+
"apiKey": "{{chatCompletionKe}}",
444445
"name": "genAI-prompt-skill",
445446
"description": "GenAI Prompt skill for image verbalization",
446447
"context": "/document/normalized_images/*",
@@ -485,7 +486,7 @@ POST {{searchUrl}}/skillsets?api-version=2025-05-01-preview HTTP/1.1
485486
],
486487
"resourceUri": "{{openAIResourceUri}}",
487488
"deploymentId": "text-embedding-3-large",
488-
"searchApiKey": "",
489+
"apiKey": "{{openAIKey}}",
489490
"dimensions": 3072,
490491
"modelName": "text-embedding-3-large"
491492
},
@@ -516,7 +517,7 @@ POST {{searchUrl}}/skillsets?api-version=2025-05-01-preview HTTP/1.1
516517
"indexProjections": {
517518
"selectors": [
518519
{
519-
"targetIndexName": "{{index}}",
520+
"targetIndexName": "doc-intelligence-image-verbalization-index",
520521
"parentKeyFieldName": "text_document_id",
521522
"sourceContext": "/document/text_sections/*",
522523
"mappings": [
@@ -539,7 +540,7 @@ POST {{searchUrl}}/skillsets?api-version=2025-05-01-preview HTTP/1.1
539540
]
540541
},
541542
{
542-
"targetIndexName": "{{index}}",
543+
"targetIndexName": "doc-intelligence-image-verbalization-index",
543544
"parentKeyFieldName": "image_document_id",
544545
"sourceContext": "/document/normalized_images/*",
545546
"mappings": [
@@ -572,6 +573,7 @@ POST {{searchUrl}}/skillsets?api-version=2025-05-01-preview HTTP/1.1
572573
},
573574
"knowledgeStore": {
574575
"storageConnectionString": "{{storageConnection}}",
576+
"identity": null,
575577
"projections": [
576578
{
577579
"files": [

articles/search/tutorial-document-layout-multimodal-embeddings.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,9 @@ For authenticated connections that occur during indexer and skillset processing,
110110
@searchUrl = PUT-YOUR-SEARCH-SERVICE-ENDPOINT-HERE
111111
@searchApiKey = PUT-YOUR-ADMIN-API-KEY-HERE
112112
@storageConnection = PUT-YOUR-STORAGE-CONNECTION-STRING-HERE
113-
@openAIResourceUri = PUT-YOUR-OPENAI-URI-HERE
114-
@openAIKey = PUT-YOUR-OPENAI-KEY-HERE
115-
@chatCompletionResourceUri = PUT-YOUR-CHAT-COMPLETION-URI-HERE
116-
@chatCompletionKey = PUT-YOUR-CHAT-COMPLETION-KEY-HERE
117-
@imageProjectionContainer=PUT-YOUR-IMAGE-PROJECTION-CONTAINER-HERE
113+
@cognitiveServicesUrl = PUT-YOUR-AZURE-AI-MULTI-SERVICE-ENDPOINT-HERE
114+
@modelVersion = 2023-04-15
115+
@imageProjectionContainer=sustainable-ai-pdf-images
118116
```
119117

120118
1. Save the file using a `.rest` or `.http` file extension. For help with the REST client, see [Quickstart: Full-text search using REST](search-get-started-text.md).
@@ -288,7 +286,7 @@ POST {{searchUrl}}/indexes?api-version=2025-05-01-preview HTTP/1.1
288286
{
289287
"name": "hnsw",
290288
"algorithm": "defaulthnsw",
291-
"vectorizer": "{{vectorizer}}"
289+
"vectorizer": "demo-vectorizer"
292290
}
293291
],
294292
"algorithms": [
@@ -304,11 +302,11 @@ POST {{searchUrl}}/indexes?api-version=2025-05-01-preview HTTP/1.1
304302
],
305303
"vectorizers": [
306304
{
307-
"name": "{{ vectorizer }}",
305+
"name": "demo-vectorizer",
308306
"kind": "aiServicesVision",
309307
"aiServicesVisionParameters": {
310308
"resourceUri": "{{cognitiveServicesUrl}}",
311-
"searchApiKey": "{{cognitiveServicesKey}}",
309+
"authIdentity": null,
312310
"modelVersion": "{{modelVersion}}"
313311
}
314312
}
@@ -452,7 +450,7 @@ POST {{searchUrl}}/skillsets?api-version=2025-05-01-preview HTTP/1.1
452450
"indexProjections": {
453451
"selectors": [
454452
{
455-
"targetIndexName": "{{index}}",
453+
"targetIndexName": "doc-intelligence-multimodal-embedding-index",
456454
"parentKeyFieldName": "text_document_id",
457455
"sourceContext": "/document/text_sections/*",
458456
"mappings": [
@@ -504,6 +502,7 @@ POST {{searchUrl}}/skillsets?api-version=2025-05-01-preview HTTP/1.1
504502
},
505503
"knowledgeStore": {
506504
"storageConnectionString": "",
505+
"identity": null,
507506
"projections": [
508507
{
509508
"files": [

0 commit comments

Comments
 (0)