Skip to content

Commit 90feed0

Browse files
author
Eric Dahlvang
authored
Update SendConversationHistoryAsync wording
TranscriptLoggerMiddleware will automatically log the transcript and SendConversationHistoryAsync does not store anything, but rather it sends the transcript to the conversation.
1 parent 7273de5 commit 90feed0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/v4sdk/bot-builder-howto-v4-storage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ Send a message to your bot, and the bot will list the messages it received.
536536
After you have run your bot and saved your information, we can view it in under the **Storage Explorer** tab in the Azure portal.
537537

538538
## Blob transcript storage
539-
Azure blob transcript storage provides a specialized storage option that allows you to easily save and retrieve user conversations in the form of a recorded transcript. Azure blob transcript storage is particularly useful for automatically capturing user inputs to examine when debugging of your bot's performance.
539+
Azure blob transcript storage provides a specialized storage option that allows you to easily save and retrieve user conversations in the form of a recorded transcript. Azure blob transcript storage is particularly useful for automatically capturing user inputs to examine when debugging your bot's performance.
540540

541541
### Set up
542542
Azure blob transcript storage can use the same blob storage account created following the steps detailed in sections "_Create your blob storage account_" and "_Add configuration information_" above. For this discussion, we have added a new blob container, "_mybottranscripts_."
@@ -570,7 +570,7 @@ public ConversationHistoryBot(AzureBlobTranscriptStore transcriptStore)
570570
```
571571

572572
### Store user conversations in azure blob transcripts
573-
After a blob container is available to store transcripts you can begin to preserve your users' conversations with your bot. These conversations can later be used as a debugging tool to see how users are interacting with your bot. The following code preserves user conversation inputs when activity.text receives the input message _!history_.
573+
After the TranscriptLoggerMiddleware is added, the Transcript Store will automatically begin to preserve your users' conversations with your bot. These conversations can later be used as a debugging tool to see how users are interacting with your bot. The following code retrieves the transcript, then sends it to the current conversation when activity.text receives the input message _!history_. Note: the SendConversationHistoryAsync method is supported in the Direct Line, Web Chat and Emulator channels.
574574

575575

576576
```csharp

0 commit comments

Comments
 (0)