show data in ChatHubConversationHook.
This commit is contained in:
parent
dbd950c754
commit
c73a713e15
|
|
@ -8,7 +8,7 @@
|
|||
"iconUrl": "https://cdn.iconscout.com/icon/premium/png-256-thumb/route-1613278-1368497.png",
|
||||
"disabled": false,
|
||||
"isPublic": true,
|
||||
"profiles": [ "default" ],
|
||||
"profiles": [ "tool" ],
|
||||
"routingRules": [
|
||||
{
|
||||
"type": "planner",
|
||||
|
|
|
|||
|
|
@ -108,6 +108,7 @@ public class ChatHubConversationHook : ConversationHookBase
|
|||
MessageId = message.MessageId,
|
||||
Text = message.Content,
|
||||
RichContent = message.RichContent,
|
||||
Data = message.Data,
|
||||
Sender = new UserViewModel()
|
||||
{
|
||||
FirstName = "AI",
|
||||
|
|
|
|||
|
|
@ -73,6 +73,7 @@ public class PlaywrightInstance : IDisposable
|
|||
await _contexts[id].Pages.Last().WaitForLoadStateAsync(LoadState.DOMContentLoaded);
|
||||
await _contexts[id].Pages.Last().WaitForLoadStateAsync(LoadState.NetworkIdle);
|
||||
}
|
||||
await Task.Delay(100);
|
||||
}
|
||||
|
||||
public async Task Close(string id)
|
||||
|
|
|
|||
Loading…
Reference in a new issue