mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 19:52:10 +00:00
20 lines
653 B
Plaintext
20 lines
653 B
Plaintext
@using AIStudio.Settings
|
|
@inherits SettingsDialogBase
|
|
|
|
<MudDialog>
|
|
<TitleContent>
|
|
<MudText Typo="Typo.h6" Class="d-flex align-center">
|
|
<MudIcon Icon="@Icons.Material.Filled.DocumentScanner" Class="mr-2" />
|
|
@T("Assistant: Document Analysis Options")
|
|
</MudText>
|
|
</TitleContent>
|
|
<DialogContent>
|
|
<ToolDefaultsConfiguration Component="Components.DOCUMENT_ANALYSIS_ASSISTANT" IncludeVisibilityToggle="@false" />
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="@this.Close" Variant="Variant.Filled">
|
|
@T("Close")
|
|
</MudButton>
|
|
</DialogActions>
|
|
</MudDialog>
|