You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<MudTextFieldT="string"@bind-Text="@this.inputText"Validation="@this.ValidatingText"AdornmentIcon="@Icons.Material.Filled.DocumentScanner"Adornment="Adornment.Start"Label="Text or email"Variant="Variant.Outlined"Lines="12"AutoGrow="@true"MaxLines="24"Class="mb-3"UserAttributes="@USER_INPUT_ATTRIBUTES"/>
<MudSelectT="Profile"Strict="@true"Value="@this.Profile"ValueChanged="@this.SelectionChanged"Adornment="Adornment.Start"AdornmentIcon="@Icons.Material.Filled.Person4"Margin="Margin.Dense"Label="Select one of your profiles"Variant="Variant.Outlined"Class="mb-3"Validation="@this.Validation">
<AssistantBlockName="E-Mail"Description="Generate an e-mail for a given context."Icon="@Icons.Material.Filled.Email"Link="@Routes.ASSISTANT_EMAIL"/>
25
+
<AssistantBlockName="My Tasks"Description="Analyze a text or an email for tasks you need to complete."Icon="@Icons.Material.Filled.Task"Link="@Routes.ASSISTANT_MY_TASKS"/>
25
26
<AssistantBlockName="Agenda Planner"Description="Generate an agenda for a given meeting, seminar, etc."Icon="@Icons.Material.Filled.CalendarToday"Link="@Routes.ASSISTANT_AGENDA"/>
26
27
<AssistantBlockName="Legal Check"Description="Ask a question about a legal document."Icon="@Icons.Material.Filled.Gavel"Link="@Routes.ASSISTANT_LEGAL_CHECK"/>
27
28
<AssistantBlockName="Icon Finder"Description="Using a LLM to find an icon for a given context."Icon="@Icons.Material.Filled.FindInPage"Link="@Routes.ASSISTANT_ICON_FINDER"/>
<ConfigurationOptionOptionDescription="Preselect options?"LabelOn="Options are preselected"LabelOff="No options are preselected"State="@(() => this.SettingsManager.ConfigurationData.MyTasks.PreselectOptions)"StateUpdate="@(updatedState => this.SettingsManager.ConfigurationData.MyTasks.PreselectOptions = updatedState)"OptionHelp="When enabled, you can preselect options. This is might be useful when you prefer a specific language or LLM model."/>
306
+
<ConfigurationSelectOptionDescription="Preselect the language"Disabled="@(() => !this.SettingsManager.ConfigurationData.MyTasks.PreselectOptions)"SelectedValue="@(() => this.SettingsManager.ConfigurationData.MyTasks.PreselectedTargetLanguage)"Data="@ConfigurationSelectDataFactory.GetCommonLanguagesOptionalData()"SelectionUpdate="@(selectedValue => this.SettingsManager.ConfigurationData.MyTasks.PreselectedTargetLanguage = selectedValue)"OptionHelp="Which language should be preselected?"/>
<ConfigurationSelectOptionDescription="Preselect one of your profiles?"Disabled="@(() => !this.SettingsManager.ConfigurationData.MyTasks.PreselectOptions)"SelectedValue="@(() => this.SettingsManager.ConfigurationData.MyTasks.PreselectedProfile)"Data="@ConfigurationSelectDataFactory.GetProfilesData(this.SettingsManager.ConfigurationData.Profiles)"SelectionUpdate="@(selectedValue => this.SettingsManager.ConfigurationData.MyTasks.PreselectedProfile = selectedValue)"OptionHelp="Would you like to preselect one of your profiles?"/>
0 commit comments