mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 10:49:06 +00:00
14 lines
465 B
C#
14 lines
465 B
C#
using AIStudio.Tools;
|
|
|
|
namespace AIStudio.Components.Pages.TextSummarizer;
|
|
|
|
public static class CommonLanguagePrompts
|
|
{
|
|
public static string Prompt(this CommonLanguages language, string customLanguage) => language switch
|
|
{
|
|
CommonLanguages.AS_IS => "Do not change the language of the text.",
|
|
CommonLanguages.OTHER => $"Output you summary in {customLanguage}.",
|
|
|
|
_ => $"Output your summary in {language.Name()} ({language}).",
|
|
};
|
|
} |