This commit is contained in:
Korolev Dmitry
2025-11-17 21:51:52 +01:00
Unverified
parent 19b6f3a5d9
commit 836d22b205
2 changed files with 4 additions and 1 deletions
@@ -61,7 +61,7 @@ internal sealed partial class IdGenerator
public string ConversationId { get; }
/// <summary>
///
/// Gets a value indicating whether this is a new conversation.
/// </summary>
public bool IsNewConversation { get; }
@@ -26,6 +26,9 @@ internal sealed class AgentInvocationContext(IdGenerator idGenerator, JsonSerial
/// </summary>
public string ConversationId => this.IdGenerator.ConversationId;
/// <summary>
/// Returns true, if conversation is new.
/// </summary>
public bool IsNewConversation => this.IdGenerator.IsNewConversation;
/// <summary>