Edit

Share via


Add a summary component

The summarization component gives a summary of content using the Power Pages Web API. It summarizes data from one or more Dataverse tables through the Web API.

Note

The summary component is available only on websites that enable Data summarization through site settings.

How to add a summary component

To add the summary component to a page:

  1. Open design studio to edit your page's content and components.

  2. Select the page you want to edit.

  3. Select the section where you want to add the summary.

  4. Hover over any editable canvas area, then select the Summary component from the component panel.

Screenshot of adding the Summary component to a page in design studio.

Summary settings

Update the following settings to format and display the summary:

Title Title of the summary component.
Summarization API The pages API that retrieves data from Dataverse tables.
Additional instruction Guides the summary's behavior, tone, and focus. Explains how the summary appears, including preferences for tone, detail level, and any topics to focus on or avoid.
Keep summary expanded Sets whether the summary component is expanded or collapsed when the page loads.

Summarization API

Summarization API is built on top of the Power Pages Web API, which lets you retrieve data from Dataverse tables.

Examples of summarization queries

  1. To summarize title and comments columns of all feedback records:

    feedback?$select=title,comments
    
  2. To summarize selected idea name, description, and all related active comments with column name description:

    adx_ideas({{id}})?$select=name,description&$expand=adx_ideacomment($select=adx_comments,description;filter=statecode eq 0)
    

    In this example, replace the placeholder <id> with your own value.