@using AIStudio.Settings.DataModel @using AIStudio.Chat @inherits MSGComponentBase @if (this.ChatThread is not null) { @foreach (var block in this.ChatThread.Blocks.OrderBy(n => n.Time)) { @if (!block.HideFromUser) { } } } @if ( this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is not WorkspaceStorageBehavior.DISABLE_WORKSPACES && this.SettingsManager.ConfigurationData.Workspace.DisplayBehavior is WorkspaceDisplayBehavior.TOGGLE_OVERLAY) { } @if (this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is WorkspaceStorageBehavior.STORE_CHATS_MANUALLY) { } @if (!string.IsNullOrWhiteSpace(this.currentWorkspaceName)) { } @if (this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is WorkspaceStorageBehavior.STORE_CHATS_AUTOMATICALLY) { } @if (this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is not WorkspaceStorageBehavior.DISABLE_WORKSPACES) { } @if (this.SettingsManager.ConfigurationData.LLMProviders.ShowProviderConfidence) { }