3 implementations of AssistantChatViewModel
Aspire.Dashboard (1)
Model\Assistant\AIContextProvider.cs (1)
41public 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)
250if (AIContextProvider.AssistantChatViewModel != null && AIContextProvider.ShowAssistantSidebarDialog)
Components_Layout_MainLayout_razor.g.cs (4)
558"header-button" + ((AIContextProvider.AssistantChatViewModel is {} vm && AIContextProvider.ShowAssistantSidebarDialog) ? " header-button-selected" : "") 761if (AIContextProvider.AssistantChatViewModel is {} vm && AIContextProvider.ShowAssistantSidebarDialog) 1149if (AIContextProvider.AssistantChatViewModel is not null && AIContextProvider.ShowAssistantSidebarDialog) 1239if (AIContextProvider.AssistantChatViewModel is not null && AIContextProvider.ShowAssistantSidebarDialog)