Added an introduction to providers

This commit is contained in:
Thorsten Sommer 2024-09-08 16:27:31 +02:00
parent f0c6613521
commit 30235b19eb
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 7 additions and 0 deletions

View File

@ -11,6 +11,12 @@
<MudExpansionPanels Class="mb-3" MultiExpansion="@false">
<ExpansionPanel HeaderIcon="@Icons.Material.Filled.Layers" HeaderText="Configure Providers">
<MudText Typo="Typo.h4" Class="mb-3">Configured Providers</MudText>
<MudJustifiedText Typo="Typo.body1" Class="mb-3">
What we call a provider is the combination of an LLM provider such as OpenAI and a model like GPT-4o.
You can configure as many providers as you want. This way, you can use the appropriate model for each
task. As an LLM provider, you can also choose local providers. However, to use this app, you must
configure at least one provider.
</MudJustifiedText>
<MudTable Items="@this.SettingsManager.ConfigurationData.Providers" Class="border-dashed border rounded-lg">
<ColGroup>
<col style="width: 3em;"/>

View File

@ -1,2 +1,3 @@
# v0.9.7, build 182 (2024-09-09 xx:xx UTC)
- Added an introductory description to the provider settings.
- Improved hyphenation for continuous text so that the rules of the respective language are taken into account where possible.