Skip to content

Commit b5d6ce8

Browse files
committed
addressed blockers
1 parent 634863e commit b5d6ce8

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

articles/search/cognitive-search-aml-skill.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Skill inputs are a node of the [enriched document](cognitive-search-working-with
7777

7878
## Skill outputs
7979

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.
8181

8282
## Sample definition
8383

64.1 KB
Loading
70.8 KB
Loading
73.4 KB
Loading

articles/search/search-create-app-portal.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
---
2-
title: "Quickstart: Create a demo app in Azure portal"
2+
title: "Quickstart: Create a demo search app in Azure portal"
33
titleSuffix: Azure AI Search
44
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.
55
manager: nitinme
66
author: HeidiSteen
77
ms.author: heidist
88
ms.service: azure-ai-search
99
ms.topic: quickstart
10-
ms.date: 01/17/2024
10+
ms.date: 12/04/2024
1111
ms.custom:
1212
- mode-ui
1313
- ignite-2023
1414
---
1515

16-
# Quickstart: Create a demo app in the Azure portal
16+
# Quickstart: Create a demo search app in the Azure portal
1717

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.
1919

2020
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.
2121

@@ -39,16 +39,18 @@ When the index is ready to use, move on to the next step.
3939

4040
## Start the wizard
4141

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).
4343

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**
4545

4646
1. Choose *realestate-us-sample-index* from the list of existing indexes.
4747

4848
1. On the index page, at the top, select **Create demo app** to start the wizard.
4949

5050
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.
5151

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+
5254
## Configure search results
5355

5456
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
5759

5860
1. In Title, choose a field that conveys the uniqueness of each document. In this sample, the listing ID is a reasonable selection.
5961

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.
6163

6264
:::image type="content" source="media/search-create-app-portal/configure-results.png" alt-text="configure results for sample data" border="false":::
6365

@@ -88,6 +90,8 @@ The following screenshot shows options in the wizard, juxtaposed with a rendered
8890

8991
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.
9092

93+
Select fields for which suggested queries are provided. You should choose shorter string fields. Avoid verbose fields such as descriptions.
94+
9195
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:
9296

9397
```JSON

0 commit comments

Comments
 (0)