Skip to content

Commit

Permalink
Restructuring of the assistant overview: the assistants are now displ…
Browse files Browse the repository at this point in the history
…ayed in different categories (#68)
  • Loading branch information
SommerEngineering authored Aug 2, 2024
1 parent e08687a commit 1ec86ec
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 6 deletions.
31 changes: 25 additions & 6 deletions app/MindWork AI Studio/Components/Pages/Assistants.razor
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,28 @@
Assistants
</MudText>

<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="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="Coding" Description="Get coding and debugging support from a LLM." Icon="@Icons.Material.Filled.Code" Link="/assistant/coding"/>
</MudStack>
<InnerScrolling HeaderHeight="6em">

<MudText Typo="Typo.h4" Class="mb-2 mr-3">
General
</MudText>
<MudStack Row="@true" Wrap="@Wrap.Wrap" Class="mb-3">
<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"/>
</MudStack>

<MudText Typo="Typo.h4" Class="mb-2 mr-3 mt-6">
Business
</MudText>
<MudStack Row="@true" Wrap="@Wrap.Wrap" Class="mb-3">
<AssistantBlock Name="Icon Finder" Description="Using a LLM to find an icon for a given context." Icon="@Icons.Material.Filled.FindInPage" Link="/assistant/icons"/>
</MudStack>

<MudText Typo="Typo.h4" Class="mb-2 mr-3 mt-6">
Software Engineering
</MudText>
<MudStack Row="@true" Wrap="@Wrap.Wrap" Class="mb-3">
<AssistantBlock Name="Coding" Description="Get coding and debugging support from a LLM." Icon="@Icons.Material.Filled.Code" Link="/assistant/coding"/>
</MudStack>

</InnerScrolling>
2 changes: 2 additions & 0 deletions app/MindWork AI Studio/wwwroot/changelog/v0.8.7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# v0.8.7, build 169
- Restructuring of the assistant overview: the assistants are now displayed in different categories.

0 comments on commit 1ec86ec

Please sign in to comment.