Skip to content

Commit 1ec86ec

Browse files
Restructuring of the assistant overview: the assistants are now displayed in different categories (#68)
1 parent e08687a commit 1ec86ec

File tree

2 files changed

+27
-6
lines changed

2 files changed

+27
-6
lines changed

app/MindWork AI Studio/Components/Pages/Assistants.razor

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,28 @@
44
Assistants
55
</MudText>
66

7-
<MudStack Row="@true" Wrap="@Wrap.Wrap">
8-
<AssistantBlock Name="Icon Finder" Description="Using a LLM to find an icon for a given context." Icon="@Icons.Material.Filled.FindInPage" Link="/assistant/icons"/>
9-
<AssistantBlock Name="Text Summarizer" Description="Using a LLM to summarize a given text." Icon="@Icons.Material.Filled.TextSnippet" Link="/assistant/summarizer"/>
10-
<AssistantBlock Name="Translation" Description="Translate text into another language." Icon="@Icons.Material.Filled.Translate" Link="/assistant/translation"/>
11-
<AssistantBlock Name="Coding" Description="Get coding and debugging support from a LLM." Icon="@Icons.Material.Filled.Code" Link="/assistant/coding"/>
12-
</MudStack>
7+
<InnerScrolling HeaderHeight="6em">
8+
9+
<MudText Typo="Typo.h4" Class="mb-2 mr-3">
10+
General
11+
</MudText>
12+
<MudStack Row="@true" Wrap="@Wrap.Wrap" Class="mb-3">
13+
<AssistantBlock Name="Text Summarizer" Description="Using a LLM to summarize a given text." Icon="@Icons.Material.Filled.TextSnippet" Link="/assistant/summarizer"/>
14+
<AssistantBlock Name="Translation" Description="Translate text into another language." Icon="@Icons.Material.Filled.Translate" Link="/assistant/translation"/>
15+
</MudStack>
16+
17+
<MudText Typo="Typo.h4" Class="mb-2 mr-3 mt-6">
18+
Business
19+
</MudText>
20+
<MudStack Row="@true" Wrap="@Wrap.Wrap" Class="mb-3">
21+
<AssistantBlock Name="Icon Finder" Description="Using a LLM to find an icon for a given context." Icon="@Icons.Material.Filled.FindInPage" Link="/assistant/icons"/>
22+
</MudStack>
23+
24+
<MudText Typo="Typo.h4" Class="mb-2 mr-3 mt-6">
25+
Software Engineering
26+
</MudText>
27+
<MudStack Row="@true" Wrap="@Wrap.Wrap" Class="mb-3">
28+
<AssistantBlock Name="Coding" Description="Get coding and debugging support from a LLM." Icon="@Icons.Material.Filled.Code" Link="/assistant/coding"/>
29+
</MudStack>
30+
31+
</InnerScrolling>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# v0.8.7, build 169
2+
- Restructuring of the assistant overview: the assistants are now displayed in different categories.

0 commit comments

Comments
 (0)