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-aml-skill.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
@@ -77,7 +77,7 @@ Skill inputs are a node of the [enriched document](cognitive-search-working-with
77
77
78
78
## Skill outputs
79
79
80
-
Skill outputs are new nodes of an enriched document created by the skill. There are no predefined outputs for this skill. For outputs, you should provide nodes that can be populated from the JSON reponse of your AML skill.
80
+
Skill outputs are new nodes of an enriched document created by the skill. There are no predefined outputs for this skill. For outputs, you should provide nodes that can be populated from the JSON response of your AML skill.
Copy file name to clipboardExpand all lines: articles/search/search-create-app-portal.md
+11-7Lines changed: 11 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,21 +1,21 @@
1
1
---
2
-
title: "Quickstart: Create a demo app in Azure portal"
2
+
title: "Quickstart: Create a demo search app in Azure portal"
3
3
titleSuffix: Azure AI Search
4
4
description: Run the Create demo app wizard to generate HTML pages and script for an operational web app. The page includes a search bar, results area, sidebar, and typeahead support.
5
5
manager: nitinme
6
6
author: HeidiSteen
7
7
ms.author: heidist
8
8
ms.service: azure-ai-search
9
9
ms.topic: quickstart
10
-
ms.date: 01/17/2024
10
+
ms.date: 12/04/2024
11
11
ms.custom:
12
12
- mode-ui
13
13
- ignite-2023
14
14
---
15
15
16
-
# Quickstart: Create a demo app in the Azure portal
16
+
# Quickstart: Create a demo search app in the Azure portal
17
17
18
-
In this Azure AI Search quickstart, you'll use the Azure portal's **Create demo app** wizard to generate a downloadable, "localhost"-style web app that runs in a browser. Depending on its configuration, the generated app is operational on first use, with a live read-only connection to an index on your search service. A default app can include a search bar, results area, sidebar filters, and typeahead support.
18
+
In this quickstart for Azure AI Search, learn how to use the Azure portal's **Create demo app** wizard to generate a downloadable, "localhost"-style web app that runs in a browser. Depending on how you configure it, the generated app is operational on first use, with a live read-only connection to an index on your search service. A default app can include a search bar, results area, sidebar filters, and typeahead support.
19
19
20
20
A demo app can help you visualize how an index will function in a client app, but it isn't intended for production scenarios. Production apps should include security, error handling, and hosting logic that the demo app doesn't provide.
21
21
@@ -39,16 +39,18 @@ When the index is ready to use, move on to the next step.
39
39
40
40
## Start the wizard
41
41
42
-
1. Sign in to the [Azure portal](https://portal.azure.com/) with your Azure account.
42
+
1. Sign in to the [Azure portal](https://portal.azure.com/) with your Azure account and [find your search service](https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Search%2FsearchServices).
43
43
44
-
1.[Find your search service](https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Search%2FsearchServices) and on the Overview page, from the links on the middle of the page, select **Indexes**.
44
+
1.Under **Search Management** > **Indexes**
45
45
46
46
1. Choose *realestate-us-sample-index* from the list of existing indexes.
47
47
48
48
1. On the index page, at the top, select **Create demo app** to start the wizard.
49
49
50
50
1. On the first wizard page, select **Enable Cross Origin Resource Sharing (CORS)** to add CORS support to your index definition. This step is optional, but your local web app won't connect to the remote index without it.
51
51
52
+
:::image type="content" source="media/search-create-app-portal/start-app-enable-cors.png" alt-text="Screenshot of the enable CORS option for the real estate sample index.":::
53
+
52
54
## Configure search results
53
55
54
56
The wizard provides a basic layout for rendered search results that includes space for a thumbnail image, a title, and description. Backing each of these elements is a field in your index that provides the data.
@@ -57,7 +59,7 @@ The wizard provides a basic layout for rendered search results that includes spa
57
59
58
60
1. In Title, choose a field that conveys the uniqueness of each document. In this sample, the listing ID is a reasonable selection.
59
61
60
-
1. In Description, choose a field that provides details that might help someone decide whether to click through to that particular document.
62
+
1. In Description, choose a field that provides details that might help someone decide whether to drill down to that particular document.
61
63
62
64
:::image type="content" source="media/search-create-app-portal/configure-results.png" alt-text="configure results for sample data" border="false":::
63
65
@@ -88,6 +90,8 @@ The following screenshot shows options in the wizard, juxtaposed with a rendered
88
90
89
91
Suggestions refer to automated query prompts that are attached to the search box. Azure AI Search supports two: *autocompletion* of a partially entered search term, and *suggestions* for a dropdown list of potential matching documents based.
90
92
93
+
Select fields for which suggested queries are provided. You should choose shorter string fields. Avoid verbose fields such as descriptions.
94
+
91
95
The wizard supports suggestions, and the fields that can provide suggested results are derived from a [`Suggesters`](index-add-suggesters.md) construct in the index:
0 commit comments