---
sourceDocument: Australia Conversational Interfaces
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/de-DE/conversational-interfaces

 Release :

    - australia

ft:locale :

    - de-DE

ft:publication_title :

    - Australia Conversational Interfaces

ft:clusterId :

    - convint

bundleId :

    - convint

workflow :

    - Platform


---

# Synthesized response in Slack conversations

# Synthesized response in Slack conversations {#ariaid-title1}

* Freigeben Version: Australia
* 
* Aktualisiert 30. Juni 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 Minute Lesedauer

Synthesized responses in Slack conversations provide a smarter experience with Large Language Models (LLM) based results summarized in a single response for users to see information in a conversational way, and avoid browsing through
carousels.  
With synthesized responses implemented in Slack conversations, the user experience is increased in several ways for the response to contain the most relevant items and information, such as:

* Returning multiple Genius Results and topics in carousel format.
* Providing unified search across topics and catalog items.
* Providing a multi-Knowledge Base Q\&A pipeline that enables multiple snippets from multiple Knowledge Base articles to be passed to the LLM as the context for answer generation.
{#slack-synthesized-response__ul_yqm_pl2_b2c}

The overall synthesized response helps users experience a conversational flow that understands query intent, searches across records of various types, and summarizes results in a unified, easy-to-consume response.

When you start a conversation in Slack and ask a question, with Now Assist enabled on it, you receive a summary of the response with catalog items and topics followed by the citation links. For example, if you enter a command <kbd class="ph userinput">laptop</kbd> in your
conversations, you see the responses in a synthesized format.

When you select the View other options button they get the list of available Knowledge Base articles and catalogs, which you can select and go through the details.

## Streaming synthesized response {#slack-synthesized-response__section_kyb_jh5_xfc}

Streaming synthesized responses in Slack conversations provides a faster interaction and more engaged user experience with real-time updates while the messages are processed. To learn more about response streaming, see [Chat streaming responses](https://servicenow-prod.fluidtopics.net/_or2GqeEB8A6YO7jo5ivcw "Synthesized responses stream in real time for Now Assist LLM chat conversations instead of waiting for the entire message to render. Streaming enables responses from the LLM to be sent immediately to help improve performance when replying to requests.") and [Manage an assistant chat experience](https://servicenow-prod.fluidtopics.net/Cvi0ZSCx1mfzXw5dCtvJLw "Manage the chat experience of your assistant.").  
To enable response streaming in Slack conversations, see [Enable Now Assist in Virtual Agent for Slack](https://servicenow-prod.fluidtopics.net/pgJpWsK0x5ktkeqBUHTtpw "Enable the large language model (LLM)-based conversational experience with Now Assist in your Virtual Agent integrated with Slack."). With response streaming enabled in Slack conversations, you can experience the following enhancements:

* Reduced latency in conversations
* Increased engagement
* Ability to handle longer or more complex queries effectively
{#slack-synthesized-response__ul_jqb_zxd_yfc}

## Example of triggering AI agents through REST API {#slack-synthesized-response__section_pfq_v3d_g3c}

Example of using the sn_aia REST API endpoints to trigger agents through REST API calls.  

    {
    "jsonrpc": "2.0",
    "id": "{{$guid}}",
    "method": "message/send",
    "params": {
    "message": {
    "kind": "message",
    "role": "user",
    "parts": [
    {
    "kind": "text",
    "text": "Help me plan a calculator app"
    }
    ],
    "messageId": "{{$guid}}"
    }
    }
    }


