1 type derived from UIAgentOptions
Microsoft.AspNetCore.Components.AI (1)
Pipeline\UIAgentOptions.cs (1)
93public sealed class UIAgentOptions<TState> : UIAgentOptions where TState : class, new()
1 instantiation of UIAgentOptions
Microsoft.AspNetCore.Components.AI (1)
Engine\UIAgent.cs (1)
89_options = new UIAgentOptions();
7 references to UIAgentOptions
Microsoft.AspNetCore.Components.AI (7)
Blocks\UIActionBlock.cs (1)
13/// <see cref="UIAgentOptions.RegisterUIAction(AIFunction)"/>. Renderers can call
Engine\UIAgent.cs (5)
32private readonly UIAgentOptions _options; 37internal UIAgentOptions Options => _options; 74public UIAgent(IChatClient chatClient, Action<UIAgentOptions>? configure) 85public UIAgent(IChatClient chatClient, Action<UIAgentOptions>? configure, ILoggerFactory? loggerFactory) 94internal UIAgent(IChatClient chatClient, UIAgentOptions options, ILoggerFactory? loggerFactory)
Pipeline\BlockMappingPipeline.cs (1)
22internal BlockMappingPipeline(UIAgentOptions options, ILogger? logger = null)