Improved the language handling of the agenda assistant

This commit is contained in:
Thorsten Sommer 2024-08-21 21:02:38 +02:00
parent 6ddb90a849
commit 86306371ea
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 6 additions and 0 deletions

View File

@ -363,6 +363,9 @@ public partial class AssistantAgenda : AssistantBaseCore
private string PromptLanguage()
{
if(this.selectedTargetLanguage is CommonLanguages.AS_IS)
return "Use the same language as the input.";
if(this.selectedTargetLanguage is CommonLanguages.OTHER)
return this.customTargetLanguage;

View File

@ -0,0 +1,3 @@
# v0.8.12, build 174
- Improved the content validation for the agenda assistant.
- Improved the language handling of the agenda assistant.