Skip to content

Commit

Permalink
Update ChatSettings.razor
Browse files Browse the repository at this point in the history
  • Loading branch information
BeepBeepBopBop committed Jan 23, 2025
1 parent 23a0489 commit acd872c
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions LM-Kit-Maestro/UI/Razor/Components/ChatSettings.razor
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@inherits ComponentBase

<MudExpansionPanels>
<MudExpansionPanels MultiExpansion="true">
<MudExpansionPanel Text="General settings">
<MudStack>

Expand All @@ -14,11 +14,29 @@

<div>
<MudText>
Chatbot purpose
Maximum completion tokens
</MudText>

<MudTextField Value="ViewModel.MaximumCompletionTokens"/>
</div>

<div>
<MudText>
Request timeout
</MudText>

<MudTextField Value="ViewModel.SystemPrompt"/>
<MudTextField Value="ViewModel.RequestTimeout"/>
</div>


<div>
<MudText>
Context size
</MudText>

<MudTextField Value="ViewModel.ContextSize"/>
</div>

</MudStack>
</MudExpansionPanel>

Expand Down

0 comments on commit acd872c

Please sign in to comment.