Skip to content

Commit ba87baf

Browse files
Merge pull request #4205 from HeidiSteen/heidist-freshness
Power app freshness pass
2 parents 311151a + 117284e commit ba87baf

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

articles/search/search-howto-powerapps.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,11 @@ A connector in Power Apps is a data source connection. In this step, create a cu
6969

7070
* Select the verb `GET`
7171

72-
* For the URL, enter a sample query for your search index (`search=*` returns all documents, `$select=` lets you choose fields). The API version is required. Fully specified, a URL might look like this: `mydemo.search.windows.net/indexes/hotels-sample-index/docs?search=*&$select=HotelName,Description,Address/City&api-version=2024-07-01`. Omit the `https://` prefix.
72+
* For the URL, enter a sample query for your search index (`search=*` returns all documents, `$select=` lets you choose fields). The API version is required. Fully specified, a URL might look like the following example. Notice that the `https://` prefix is omitted.
73+
74+
```http
75+
mydemo.search.windows.net/indexes/hotels-sample-index/docs?search=*&$select=HotelName,Description,Address/City&api-version=2024-07-01
76+
```
7377
7478
* For Headers, type `Content-Type application/json`.
7579
@@ -137,7 +141,7 @@ A connector in Power Apps is a data source connection. In this step, create a cu
137141
```
138142
139143
> [!TIP]
140-
> There is a character limit to the JSON response you can enter, so you might want to simplify the JSON before pasting it. The schema and format of the response is more important than the values themselves. For example, the Description field could be simplified to just the first sentence.
144+
> There's a character limit to the JSON response you can enter, so you might want to simplify the JSON before pasting it. The schema and format of the response is more important than the values themselves. For example, the Description field could be simplified to just the first sentence.
141145
142146
1. Select **Import** to add the default response.
143147
@@ -159,7 +163,7 @@ Provide a [query API key](search-security-api-keys.md#find-existing-keys) for th
159163
160164
:::image type="content" source="./media/search-howto-powerapps/1-11-1-test-connector.png" alt-text="View Properties" border="true":::
161165
162-
1. In the drop down list of operations, select **6. Test**.
166+
1. In the drop-down list of operations, select **6. Test**.
163167
164168
1. In **Test Operation**, select **+ New Connection**.
165169
@@ -171,6 +175,8 @@ Provide a [query API key](search-security-api-keys.md#find-existing-keys) for th
171175
172176
If the test fails, recheck the inputs. In particular, revisit the sample response and make sure it was created properly. The connector definition should show the expected items for the response.
173177
178+
If you're blocked by a Data Loss Prevention (DLP) policy error, review the error message for guidance. You might be able to modify the policy or make your connector nonblockable.
179+
174180
## 3 - Visualize results
175181
176182
In this step, create a Power App with a search box, a search button, and a display area for the results. The Power App will connect to the recently created custom connector to get the data from Azure Search.

articles/search/whats-new.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Learn about the latest updates to Azure AI Search functionality, docs, and sampl
2424

2525
| Item                         | Type | Description |
2626
|-----------------------------|------|--------------|
27-
| [RAG Time Journey](https://github.com/microsoft/rag-time) | Demo code | Code and video demonstrations of Retrieval Augmented Generation (RAG) workflows that use Azure AI Search. Segments include fundamentals, patterns and use-cases, [vector indexing at scale](https://github.com/microsoft/rag-time/tree/main/Journey%203%20-%20Optimize%20your%20Vector%20Index%20for%20Scale), and [agentic search](https://github.com/microsoft/rag-time/tree/main/Journey%20Bonus%20-%20Agentic%20RAG) where you use an agent to evaluate a result and generate a better answer. |
27+
| [RAG Time Journey](https://github.com/microsoft/rag-time) | Demo code | Code and video demonstrations of Retrieval Augmented Generation (RAG) workflows that use Azure AI Search. Segments include fundamentals, patterns and use-cases, [vector indexing at scale](https://github.com/microsoft/rag-time/tree/main/Journey%203%20-%20Optimize%20your%20Vector%20Index%20for%20Scale), and [agentic search](https://techcommunity.microsoft.com/blog/azure-ai-services-blog/bonus-rag-time-journey-agentic-rag/4404652) where you use an agent to evaluate a result and generate a better answer. |
2828

2929
## March 2025
3030

0 commit comments

Comments
 (0)