Describing a flow
One place where Copilot shines is in being able to describe the intent or actions taken by a flow. For example, you can use a prompt such as:
Explain the steps in this flow in detail
Copilot will evaluate the steps and then report out. See Figure 23.20:
In this example, Copilot's output is the following:
1.Trigger: When a file is created (Dropbox)
The flow starts when a new file is added to a specific Dropbox folder.
It runs every minute to check for new files.
2.Action: Perform_OCR
Takes the newly created file from Dropbox.
Uses AI Builder's OCR model to extract text from the file (image or PDF).
The file content is passed as a base64-encoded string.
3.Action: Create_file (SharePoint)
Runs after OCR completes.
Creates a new file in a SharePoint document library.
The file contains the full text extracted by OCR.
This flow...