Skip to content

Commit 39479b6

Browse files
author
ecfan
committed
Start draft
1 parent cfa5268 commit 39479b6

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: Parse or chunk content
3+
description: How to parse content or chunk content to ingest using Azure AI operations for Standard workflows in Azure Logic Apps.
4+
services: logic-apps
5+
ms.suite: integration
6+
ms.reviewer: estfan, azla
7+
ms.topic: how-to
8+
ms.date: 07/26/2024
9+
# Customer intent: As a developer using Azure Logic Apps, I want to parse or chunk content that I want to ingest using Azure AI operations for my Standard workflow in Azure Logic Apps.
10+
---
11+
12+
# Parse or chunk content to ingest using Azure AI operations for Standard workflows in Azure Logic Apps (Preview)
13+
14+
[!INCLUDE [logic-apps-sku-standard](../../includes/logic-apps-sku-standard.md)]
15+
16+
> [!IMPORTANT]
17+
> This capability is in preview and is subject to the
18+
> [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
19+
20+
To ingest content, such as a PDF, CSV, or even an Excel file, for processing with an Azure AI operation, such as **Azure AI Search** or **Azure OpenAI**, you can include the **Data Operations** actions named **Parse a document** and **Chunk text** in your Standard logic app workflow. These actions convert large bodies of content into formats that Azure AI operations can more easily use.
21+
22+
The following table describes these data operations:
23+
24+
| Data operation | Description |
25+
|----------------|-------------|
26+
| **Parse a document** | Convert the specified content into a string with tokens that represent outputs, which you can use with subsequent actions in your workflow. |
27+
| **Chunk text** | Split the specified content into pieces, based on the selected strategy: <br><br>- **FixedLength** - number of characters: Provide the maximum number of characters per chunk and the language to use. <br><br>- **TokenSize** - number of tokens: Provide the maximum number of tokens per chunk and the encoding model to use. |
28+
29+
This how-to guide shows how to add and set up these operations in your workflow.
30+
31+
## Prerequisites
32+
33+
34+
## Parse a document
35+
36+
37+
38+

0 commit comments

Comments
 (0)