Browse Source

Extend Conversation Id usage

pull/24397/head
enisn 2 months ago
parent
commit
a5bbe1998a
No known key found for this signature in database GPG Key ID: A052619F04155D1C
  1. 5
      docs/en/modules/ai-management/index.md

5
docs/en/modules/ai-management/index.md

@ -500,8 +500,9 @@ You can customize the chat widget with the following properties:
})
```
#### Using Conversation Id
You can use the `ConversationId` property to specify the id of the conversation to use. When the Conversation Id is provided, the chat will be stored at the client side and will be retrieved when the user revisits the page that contains the chat widget.
#### Using the Conversation Id
You can use the `ConversationId` property to specify the id of the conversation to use. When the Conversation Id is provided, the chat will be stored at the client side and will be retrieved when the user revisits the page that contains the chat widget. If it's not provided or provided as **null**, the chat will be temporary and will not be saved, it'll be lost when the component lifetime ends.
```csharp
@await Component.InvokeAsync(typeof(ChatClientChatViewComponent), new ChatClientChatViewModel
{

Loading…
Cancel
Save