3 implementations of AssistantChatViewModel
Aspire.Dashboard (1)
Model\Assistant\AIContextProvider.cs (1)
45public AssistantChatViewModel? AssistantChatViewModel { get; private set; }
Aspire.Dashboard.Components.Tests (1)
tests\Shared\TestAIContextProvider.cs (1)
13public AssistantChatViewModel? AssistantChatViewModel { get; set; }
Aspire.Dashboard.Tests (1)
tests\Shared\TestAIContextProvider.cs (1)
13public AssistantChatViewModel? AssistantChatViewModel { get; set; }
5 references to AssistantChatViewModel
Aspire.Dashboard (5)
Components\Layout\MainLayout.razor.cs (1)
312if (AIContextProvider.AssistantChatViewModel != null && AIContextProvider.ShowAssistantSidebarDialog)
Components_Layout_MainLayout_razor.g.cs (4)
694"header-button" + ((AIContextProvider.AssistantChatViewModel is {} vm && AIContextProvider.ShowAssistantSidebarDialog) ? " header-button-selected" : "") 897if (AIContextProvider.AssistantChatViewModel is {} vm && AIContextProvider.ShowAssistantSidebarDialog) 1285if (AIContextProvider.AssistantChatViewModel is not null && AIContextProvider.ShowAssistantSidebarDialog) 1375if (AIContextProvider.AssistantChatViewModel is not null && AIContextProvider.ShowAssistantSidebarDialog)