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/search/cognitive-search-concept-image-scenarios.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -149,7 +149,7 @@ This section supplements the [skill reference](cognitive-search-predefined-skill
149
149
150
150
1.[Create or update a skillset](/rest/api/searchservice/skillsets/create) to add skills.
151
151
152
-
1. Add templates for OCR and Image Analysis from the portal, or copy the definitions from the [skill reference](cognitive-search-predefined-skills.md) documentation. Insert them into the skills array of your skillset definition.
152
+
1. Add templates for OCR and Image Analysis from the Azure portal, or copy the definitions from the [skill reference](cognitive-search-predefined-skills.md) documentation. Insert them into the skills array of your skillset definition.
153
153
154
154
1. If necessary, [include a multi-service key](cognitive-search-attach-cognitive-services.md) in the Azure AI services property of the skillset. Azure AI Search makes calls to a billable Azure AI services resource for OCR and image analysis for transactions that exceed the free limit (20 per indexer per day). Azure AI services must be in the same region as your search service.
Copy file name to clipboardExpand all lines: articles/search/cognitive-search-how-to-debug-skillset.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,15 +57,15 @@ Debug sessions work with all generally available [indexer data sources](search-d
57
57
58
58
1. On the action bar at the top, select **Add debug session**.
59
59
60
-
:::image type="content" source="media/cognitive-search-debug/new-debug-session.png" lightbox="media/cognitive-search-debug/new-debug-session.png" alt-text="Screenshot of the debug sessions commands in the portal page." border="true":::
60
+
:::image type="content" source="media/cognitive-search-debug/new-debug-session.png" lightbox="media/cognitive-search-debug/new-debug-session.png" alt-text="Screenshot of the debug sessions commands in the Azure portal page." border="true":::
61
61
62
62
1. In **Debug session name**, provide a name that will help you remember which skillset, indexer, and data source the debug session is about.
63
63
64
64
1. In **Indexer template**, select the indexer that drives the skillset you want to debug. Copies of both the indexer and skillset are used to initialize the session.
65
65
66
66
1. In **Document to debug**, choose the first document in the index or select a specific document. If you select a specific document, depending on the data source, you're asked for a URI or a row ID.
67
67
68
-
If your specific document is a blob, provide the blob URI. You can find the URI in the blob property page in the portal.
68
+
If your specific document is a blob, provide the blob URI. You can find the URI in the blob property page in the Azure portal.
69
69
70
70
:::image type="content" source="media/cognitive-search-debug/copy-blob-url.png" lightbox="media/cognitive-search-debug/copy-blob-url.png" alt-text="Screenshot of the URI property in blob storage." border="true":::
71
71
@@ -87,7 +87,7 @@ It's expected for a debug session to take longer to execute than the indexer sin
87
87
88
88
## Start with errors and warnings
89
89
90
-
Indexer execution history in the portal gives you the full error and warning list for all documents. In a debug session, the errors and warnings are limited to one document. You can work through this list, make your changes, and then return to the list to verify whether issues are resolved.
90
+
Indexer execution history in the Azure portal gives you the full error and warning list for all documents. In a debug session, the errors and warnings are limited to one document. You can work through this list, make your changes, and then return to the list to verify whether issues are resolved.
91
91
92
92
Remember that a debug session is based on one document from the entire index. If an input or output looks wrong, the problem could be specific to that document. You can choose a different document to confirm whether errors and warnings are pervasive or specific to a single document.
Build and run the solution. Since this is your first request, check the Azure portal to confirm the data source was created in Azure AI Search. On the search service overview page, verify the Data Sources list has a new item. You might need to wait a few minutes for the portal page to refresh.
240
+
Build and run the solution. Since this is your first request, check the Azure portal to confirm the data source was created in Azure AI Search. On the search service overview page, verify the Data Sources list has a new item. You might need to wait a few minutes for the Azure portal page to refresh.
241
241
242
-

242
+

In Azure AI Search tutorial console apps, we typically add a 2-second delay before running queries that return results, but because enrichment takes several minutes to complete, we'll close the console app and use another approach instead.
786
786
787
-
The easiest option is [Search explorer](search-explorer.md) in the portal. You can first run an empty query that returns all documents, or a more targeted search that returns new field content created by the pipeline.
787
+
The easiest option is [Search explorer](search-explorer.md) in the Azure portal. You can first run an empty query that returns all documents, or a more targeted search that returns new field content created by the pipeline.
788
788
789
789
1. In Azure portal, in the search Overview page, select **Indexes**.
790
790
@@ -802,7 +802,7 @@ The easiest option is [Search explorer](search-explorer.md) in the portal. You c
802
802
803
803
In the early experimental stages of development, the most practical approach for design iteration is to delete the objects from Azure AI Search and allow your code to rebuild them. Resource names are unique. Deleting an object lets you recreate it using the same name.
804
804
805
-
The sample code for this tutorial checks for existing objects and deletes them so that you can rerun your code. You can also use the portal to delete indexes, indexers, data sources, and skillsets.
805
+
The sample code for this tutorial checks for existing objects and deletes them so that you can rerun your code. You can also use the Azure portal to delete indexes, indexers, data sources, and skillsets.
806
806
807
807
## Takeaways
808
808
@@ -816,7 +816,7 @@ Finally, you learned how to test results and reset the system for further iterat
816
816
817
817
When you're working in your own subscription, at the end of a project, it's a good idea to remove the resources that you no longer need. Resources left running can cost you money. You can delete resources individually or delete the resource group to delete the entire set of resources.
818
818
819
-
You can find and manage resources in the portal, using the All resources or Resource groups link in the left-navigation pane.
819
+
You can find and manage resources in the Azure portal, using the All resources or Resource groups link in the left-navigation pane.
Copy file name to clipboardExpand all lines: articles/search/cognitive-search-tutorial-blob.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -565,7 +565,7 @@ Finally, you learned how to test results and reset the system for further iterat
565
565
566
566
When you're working in your own subscription, at the end of a project, it's a good idea to remove the resources that you no longer need. Resources left running can cost you money. You can delete resources individually or delete the resource group to delete the entire set of resources.
567
567
568
-
You can find and manage resources in the portal, using the All resources or Resource groups link in the left-navigation pane.
568
+
You can find and manage resources in the Azure portal, using the All resources or Resource groups link in the left-navigation pane.
Copy file name to clipboardExpand all lines: articles/search/cognitive-search-tutorial-debug-sessions.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,11 +50,11 @@ This section creates the sample data set in Azure Blob Storage so that the index
50
50
51
51
+ Choose the StorageV2 (general purpose V2) account type.
52
52
53
-
1. Navigate to the Azure Storage services pages in the portal and create a Blob container. Best practice is to specify the access level "private". Name your container `clinicaltrialdataset`.
53
+
1. Navigate to the Azure Storage services pages in the Azure portal and create a Blob container. Best practice is to specify the access level "private". Name your container `clinicaltrialdataset`.
54
54
55
55
1. In container, select **Upload** to upload the sample files you downloaded and unzipped in the first step.
56
56
57
-
1. While in the portal, copy the connection string for Azure Storage. You can get the connection string from **Settings** > **Access Keys** in the portal.
57
+
1. While in the Azure portal, copy the connection string for Azure Storage. You can get the connection string from **Settings** > **Access Keys** in the Azure portal.
58
58
59
59
## Copy a key and URL
60
60
@@ -80,7 +80,7 @@ In this section, create a "buggy" workflow that you can fix in this tutorial.
80
80
81
81
1. Close the file.
82
82
83
-
## Check results in the portal
83
+
## Check results in the Azure portal
84
84
85
85
The sample code intentionally creates a buggy index as a consequence of problems that occurred during skillset execution. The problem is that the index is missing data.
86
86
@@ -257,9 +257,9 @@ The results should show that organizations and locations are now populated with
257
257
258
258
When you're working in your own subscription, it's a good idea at the end of a project to identify whether you still need the resources you created. Resources left running can cost you money. You can delete resources individually or delete the resource group to delete the entire set of resources.
259
259
260
-
You can find and manage resources in the portal, using the **All resources** or **Resource groups** link in the left-navigation pane.
260
+
You can find and manage resources in the Azure portal, using the **All resources** or **Resource groups** link in the left-navigation pane.
261
261
262
-
The free service is limited to three indexes, indexers, and data sources. You can delete individual items in the portal to stay under the limit.
262
+
The free service is limited to three indexes, indexers, and data sources. You can delete individual items in the Azure portal to stay under the limit.
| name | Specified in the suggester definition, but also called on an Autocomplete or Suggestions request. |
145
145
| sourceFields | Specified in the suggester definition. It's a list of one or more fields in the index that are the source of the content for suggestions. Fields must be of type `Edm.String`. If an analyzer is specified on the field, it must be a named lexical analyzer listed on [LexicalAnalyzerName Struct](/dotnet/api/azure.search.documents.indexes.models.lexicalanalyzername) (not a custom analyzer). </br></br>As a best practice, specify only those fields that lend themselves to an expected and appropriate response, whether it's a completed string in a search bar or a dropdown list. </br></br>A hotel name is a good candidate because it has precision. Verbose fields like descriptions and comments are too dense. Similarly, repetitive fields, such as categories and tags, are less effective. In the examples, we include *category* anyway to demonstrate that you can include multiple fields. |
146
-
| searchMode | REST-only parameter, but also visible in the portal. This parameter isn't available in the .NET SDK. It indicates the strategy used to search for candidate phrases. The only mode currently supported is `analyzingInfixMatching`, which currently matches on the beginning of a term.|
146
+
| searchMode | REST-only parameter, but also visible in the Azure portal. This parameter isn't available in the .NET SDK. It indicates the strategy used to search for candidate phrases. The only mode currently supported is `analyzingInfixMatching`, which currently matches on the beginning of a term.|
Copy file name to clipboardExpand all lines: articles/search/knowledge-store-concept-intro.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ A knowledge store is defined inside a skillset definition and it has two compone
59
59
}
60
60
```
61
61
62
-
The type of projection you specify in this structure determines the type of storage used by knowledge store, but not its structure. Fields in tables, objects, and files are determined by Shaper skill output if you're creating the knowledge store programmatically, or by the Import data wizard if you're using the portal.
62
+
The type of projection you specify in this structure determines the type of storage used by knowledge store, but not its structure. Fields in tables, objects, and files are determined by Shaper skill output if you're creating the knowledge store programmatically, or by the Import data wizard if you're using the Azure portal.
63
63
64
64
+`tables` project enriched content into Table Storage. Define a table projection when you need tabular reporting structures for inputs to analytical tools or export as data frames to other data stores. You can specify multiple `tables` within the same projection group to get a subset or cross section of enriched documents. Within the same projection group, table relationships are preserved so that you can work with all of them.
65
65
@@ -73,11 +73,11 @@ The type of projection you specify in this structure determines the type of stor
73
73
74
74
## Create a knowledge store
75
75
76
-
To create knowledge store, use the portal or an API.
76
+
To create knowledge store, use the Azure portal or an API.
77
77
78
78
You need [Azure Storage](/azure/storage/), a [skillset](cognitive-search-working-with-skillsets.md), and an [indexer](search-indexer-overview.md). Because indexers require a search index, you also need to provide an index definition.
79
79
80
-
Go with the portal approach for the fastest route to a finished knowledge store. Or, choose the REST API for a deeper understanding of how objects are defined and related.
80
+
Go with the Azure portal approach for the fastest route to a finished knowledge store. Or, choose the REST API for a deeper understanding of how objects are defined and related.
81
81
82
82
### [**Azure portal**](#tab/portal)
83
83
@@ -151,7 +151,7 @@ Although an indexer creates and updates structures and content in Azure Storage,
151
151
152
152
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.
153
153
154
-
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.
154
+
The simplest approach for creating enriched documents is [through the Azure 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.
155
155
156
156
> [!div class="nextstepaction"]
157
157
> [Create a knowledge store using REST](knowledge-store-create-rest.md)
Copy file name to clipboardExpand all lines: articles/search/knowledge-store-create-portal.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
@@ -166,9 +166,9 @@ In this quickstart, the table for "hotelReviewssPages" should look similar to th
166
166
167
167
When you're working in your own subscription, it's a good idea at the end of a project to identify whether you still need the resources you created. Resources left running can cost you money. You can delete resources individually or delete the resource group to delete the entire set of resources.
168
168
169
-
You can find and manage resources in the portal, using the **All resources** or **Resource groups** link in the left-navigation pane.
169
+
You can find and manage resources in the Azure portal, using the **All resources** or **Resource groups** link in the left-navigation pane.
170
170
171
-
If you're using a free service, remember that you're limited to three indexes, indexers, and data sources. You can delete individual items in the portal to stay under the limit.
171
+
If you're using a free service, remember that you're limited to three indexes, indexers, and data sources. You can delete individual items in the Azure portal to stay under the limit.
172
172
173
173
> [!TIP]
174
174
> If you want to repeat this exercise or try a different AI enrichment walkthrough, delete the **hotel-reviews-idxr** indexer and the related objects to recreate them. Deleting the indexer resets the free daily transaction counter to zero.
Copy file name to clipboardExpand all lines: articles/search/knowledge-store-create-rest.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -408,7 +408,7 @@ In this walkthrough, the knowledge store is composed of a various tables showing
408
408
409
409
When you're working in your own subscription, it's a good idea at the end of a project to identify whether you still need the resources you created. Resources left running can cost you money. You can delete resources individually or delete the resource group to delete the entire set of resources.
410
410
411
-
You can find and manage resources in the portal, using the **All resources** or **Resource groups** link in the left-navigation pane.
411
+
You can find and manage resources in the Azure portal, using the **All resources** or **Resource groups** link in the left-navigation pane.
0 commit comments