Share via


AgentRunResponse.UserInputRequests Property

Definition

Gets all user input requests present in the response messages.

[System.Text.Json.Serialization.JsonIgnore]
public System.Collections.Generic.IEnumerable<Microsoft.Extensions.AI.UserInputRequestContent> UserInputRequests { get; }
[<System.Text.Json.Serialization.JsonIgnore>]
member this.UserInputRequests : seq<Microsoft.Extensions.AI.UserInputRequestContent>
Public ReadOnly Property UserInputRequests As IEnumerable(Of UserInputRequestContent)

Property Value

An enumerable collection of UserInputRequestContent instances found across all messages in the response.

Attributes

Remarks

User input requests indicate that the agent is asking for additional information from the user before it can continue processing. This property aggregates all such requests across all messages in the response.

Applies to