Improved assistant overview (#61)

This commit is contained in:
Thorsten Sommer 2024-07-29 09:15:23 +02:00 committed by GitHub
parent 155c2d72f8
commit 2cea53d2a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 25 additions and 26 deletions

View File

@ -1,5 +1,4 @@
<MudItem xs="3"> <MudCard Outlined="@true" Style="border-width: 2px; border-color: #0d47a1; border-radius: 12px; border-style: solid; max-width: 20em;">
<MudCard Outlined="@true" Style="border-width: 2px; border-color: #0d47a1; border-radius: 12px; border-style: solid;">
<MudCardHeader> <MudCardHeader>
<CardHeaderContent> <CardHeaderContent>
<MudStack AlignItems="AlignItems.Center" Row="@true"> <MudStack AlignItems="AlignItems.Center" Row="@true">
@ -22,5 +21,4 @@
@this.ButtonText @this.ButtonText
</MudButton> </MudButton>
</MudCardActions> </MudCardActions>
</MudCard> </MudCard>
</MudItem>

View File

@ -4,9 +4,9 @@
Assistants Assistants
</MudText> </MudText>
<MudGrid> <MudStack Row="@true" Wrap="@Wrap.Wrap">
<AssistantBlock Name="Icon Finder" Description="Using a LLM to find an icon for a given context." Icon="@Icons.Material.Filled.FindInPage" Link="/assistant/icons"/> <AssistantBlock Name="Icon Finder" Description="Using a LLM to find an icon for a given context." Icon="@Icons.Material.Filled.FindInPage" Link="/assistant/icons"/>
<AssistantBlock Name="Text Summarizer" Description="Using a LLM to summarize a given text." Icon="@Icons.Material.Filled.TextSnippet" Link="/assistant/summarizer"/> <AssistantBlock Name="Text Summarizer" Description="Using a LLM to summarize a given text." Icon="@Icons.Material.Filled.TextSnippet" Link="/assistant/summarizer"/>
<AssistantBlock Name="Translation" Description="Translate text into another language." Icon="@Icons.Material.Filled.Translate" Link="/assistant/translation"/> <AssistantBlock Name="Translation" Description="Translate text into another language." Icon="@Icons.Material.Filled.Translate" Link="/assistant/translation"/>
<AssistantBlock Name="Coding" Description="Get coding and debugging support from a LLM." Icon="@Icons.Material.Filled.Code" Link="/assistant/coding"/> <AssistantBlock Name="Coding" Description="Get coding and debugging support from a LLM." Icon="@Icons.Material.Filled.Code" Link="/assistant/coding"/>
</MudGrid> </MudStack>

View File

@ -1,4 +1,5 @@
# v0.8.6, build 168 # v0.8.6, build 168
- Added possibility to configure a default provider for chats - Added possibility to configure a default provider for chats
- Improved the readability of the `settings.json` file by using indentation and enum names instead of numbers - Improved the readability of the `settings.json` file by using indentation and enum names instead of numbers
- Improved assistant overview; assistants will now wrap to the next line if there are too many to fit on the row
- Increased the default value for the live translation delay from 1,000 to 1,500 ms - Increased the default value for the live translation delay from 1,000 to 1,500 ms