diff --git a/app/MindWork AI Studio/Pages/Assistants.razor b/app/MindWork AI Studio/Pages/Assistants.razor index b9d34408..250aa06c 100644 --- a/app/MindWork AI Studio/Pages/Assistants.razor +++ b/app/MindWork AI Studio/Pages/Assistants.razor @@ -9,52 +9,88 @@ - - - @T("General") - - - - - - - - - - @T("Business") - - - - - - - - - - + @if (this.SettingsManager.IsAnyCategoryAssistantVisible("General", + (Components.TEXT_SUMMARIZER_ASSISTANT, PreviewFeatures.NONE), + (Components.TRANSLATION_ASSISTANT, PreviewFeatures.NONE), + (Components.GRAMMAR_SPELLING_ASSISTANT, PreviewFeatures.NONE), + (Components.REWRITE_ASSISTANT, PreviewFeatures.NONE), + (Components.SYNONYMS_ASSISTANT, PreviewFeatures.NONE) + )) + { + + @T("General") + + + + + + + + + } - - @T("Learning") - - - - + @if (this.SettingsManager.IsAnyCategoryAssistantVisible("Business", + (Components.EMAIL_ASSISTANT, PreviewFeatures.NONE), + (Components.DOCUMENT_ANALYSIS_ASSISTANT, PreviewFeatures.PRE_DOCUMENT_ANALYSIS_2025), + (Components.MY_TASKS_ASSISTANT, PreviewFeatures.NONE), + (Components.AGENDA_ASSISTANT, PreviewFeatures.NONE), + (Components.JOB_POSTING_ASSISTANT, PreviewFeatures.NONE), + (Components.LEGAL_CHECK_ASSISTANT, PreviewFeatures.NONE), + (Components.ICON_FINDER_ASSISTANT, PreviewFeatures.NONE) + )) + { + + @T("Business") + + + + + + + + + + + } - - @T("Software Engineering") - - - - - + @if (this.SettingsManager.IsAnyCategoryAssistantVisible("Learning", + (Components.BIAS_DAY_ASSISTANT, PreviewFeatures.NONE) + )) + { + + @T("Learning") + + + + + } - - @T("AI Studio Development") - - - - + @if (this.SettingsManager.IsAnyCategoryAssistantVisible("Software Engineering", + (Components.CODING_ASSISTANT, PreviewFeatures.NONE), + (Components.ERI_ASSISTANT, PreviewFeatures.PRE_RAG_2024) + )) + { + + @T("Software Engineering") + + + + + + } + + @if (this.SettingsManager.IsAnyCategoryAssistantVisible("AI Studio Development", + (Components.I18N_ASSISTANT, PreviewFeatures.NONE) + )) + { + + @T("AI Studio Development") + + + + + } - \ No newline at end of file +