Fix agent name.
This commit is contained in:
parent
ac40aa645f
commit
866f412575
|
|
@ -185,7 +185,7 @@ public class StreamingLogHook : ConversationHookBase, IContentGeneratingHook, IR
|
||||||
|
|
||||||
var log = $"{agent.Name} is dequeued";
|
var log = $"{agent.Name} is dequeued";
|
||||||
await _chatHub.Clients.User(_user.Id).SendAsync("OnConversationContentLogGenerated",
|
await _chatHub.Clients.User(_user.Id).SendAsync("OnConversationContentLogGenerated",
|
||||||
BuildContentLog(conversationId, currentAgent.Name, log, ContentLogSource.HardRule, new RoleDialogModel(AgentRole.System, log)
|
BuildContentLog(conversationId, agent.Name, log, ContentLogSource.HardRule, new RoleDialogModel(AgentRole.System, log)
|
||||||
{
|
{
|
||||||
MessageId = _messageId
|
MessageId = _messageId
|
||||||
}));
|
}));
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue