Skip to content

Commit 39d8aa2

Browse files
Merge pull request #268540 from HeidiSteen/heidist-fix
[azure search] Update kstore REST how-to for VS Code
2 parents a71ef96 + 3976d0f commit 39d8aa2

7 files changed

+400
-435
lines changed

articles/search/cognitive-search-defining-skillset.md

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -269,25 +269,13 @@ Although skill output can be optionally cached for reuse purposes, it's usually
269269

270270
## Tips for a first skillset
271271

272-
+ Assemble a representative sample of your content in Blob Storage or another supported data source and run the [**Import data** wizard](search-import-data-portal.md).
272+
+ Try the [**Import data** wizard](search-import-data-portal.md).
273273

274-
The wizard automates several steps that can be challenging the first time around. It defines the skillset, index, and indexer, including field mappings and output field mappings. It will also define projections in a knowledge store if you're using one. For some skills, such as OCR or image analysis, the wizard adds utility skills that merge the image and text content that was separated during document cracking.
274+
The wizard automates several steps that can be challenging the first time around. It defines the skillset, index, and indexer, including field mappings and output field mappings. It also defines projections in a knowledge store if you're using one. For some skills, such as OCR or image analysis, the wizard adds utility skills that merge the image and text content that was separated during document cracking.
275275

276-
After the wizard runs, you can open each object in the Azure portal to view its JSON definition. You can also use [Debug Sessions](cognitive-search-debug-session.md) to invoke skillset execution over a target document.
276+
After the wizard runs, you can open each object in the Azure portal to view its JSON definition.
277277

278-
+ Alternatively, you can [import sample Postman collections](https://github.com/Azure-Samples/azure-search-postman-samples) that provide a full articulation of the object definitions required to evaluate a skill.
279-
280-
+ When you're ready to start from scratch on a new skillset, checking preliminary results is important. We recommend a search index for content validation because it's simpler to set up, in comparison to knowledge stores.
281-
282-
For each skill output, [define an output field mapping](cognitive-search-output-field-mapping.md) in the indexer, and a field in the search index.
283-
284-
:::image type="content" source="media/cognitive-search-defining-skillset/skillset-indexer-index-combo.png" alt-text="Object diagram that shows the person entity as a skill output, indexer field mapping, and index field.":::
285-
286-
After you run the indexer, use [Search Explorer](search-explorer.md) to return documents from the index and check the contents of each field to determine what the skillset detected or created.
287-
288-
This screenshot shows the results of an entity recognition skill that detected persons, locations, organizations, and other entities in a chunk of text. You can view the results to decide whether a skill adds value to your solution.
289-
290-
:::image type="content" source="media/cognitive-search-defining-skillset/doc-in-search-explorer.png" alt-text="Screenshot of a document in Search Explorer.":::
278+
+ Try [Debug Sessions](cognitive-search-debug-session.md) to invoke skillset execution over a target document and inspect the enriched document that the skillset creates. You can view and modify input and output settings and values. This tutorial is a good place to start: [Tutorial: Debug a skillset using Debug Sessions](cognitive-search-tutorial-debug-sessions.md).
291279

292280
## Next steps
293281

articles/search/knowledge-store-concept-intro.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,12 @@ The wizard automates several tasks. Specifically, both shaping and projections (
9595

9696
### [**REST**](#tab/kstore-rest)
9797

98-
[**Create your first knowledge store using Postman**](knowledge-store-create-rest.md) is a tutorial that walks you through the objects and requests belonging to this [knowledge store collection](https://github.com/Azure-Samples/azure-search-postman-samples/tree/main/knowledge-store).
98+
[**Create a knowledge store using REST**](knowledge-store-create-rest.md) is a tutorial that walks you through the objects and requests belonging to this [knowledge store collection](https://github.com/Azure-Samples/azure-search-postman-samples/tree/main/knowledge-store).
9999

100-
REST API version `2020-06-30` can be used to create a knowledge store through additions to a skillset.
100+
REST API version `2020-06-30` and higher can be used to create a knowledge store through additions to a skillset.
101101

102-
+ [Create Skillset (api-version=2020-06-30)](/rest/api/searchservice/create-skillset)
103-
+ [Update Skillset (api-version=2020-06-30)](/rest/api/searchservice/update-skillset)
102+
+ [Create Skillset](/rest/api/searchservice/create-skillset)
103+
+ [Update Skillset](/rest/api/searchservice/update-skillset)
104104

105105
Within the skillset:
106106

@@ -153,7 +153,7 @@ Although an indexer creates and updates structures and content in Azure Storage,
153153

154154
Knowledge store offers persistence of enriched documents, useful when designing a skillset, or the creation of new structures and content for consumption by any client applications capable of accessing an Azure Storage account.
155155

156-
The simplest approach for creating enriched documents is [through the portal](knowledge-store-create-portal.md), but you can also use Postman and the REST API, which is more useful if you want insight into how objects are created and referenced programmatically.
156+
The simplest approach for creating enriched documents is [through the portal](knowledge-store-create-portal.md), but a REST client and REST APIs can provide more insight into how objects are created and referenced programmatically.
157157

158158
> [!div class="nextstepaction"]
159-
> [Create a knowledge store using Postman and REST](knowledge-store-create-rest.md)
159+
> [Create a knowledge store using REST](knowledge-store-create-rest.md)

0 commit comments

Comments
 (0)