Synthesized response in Slack conversations
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.
- 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.
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 laptop 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
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 and Manage an assistant chat experience.
- Reduced latency in conversations
- Increased engagement
- Ability to handle longer or more complex queries effectively
Example of triggering AI agents through REST API
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}}"
}
}
}