| 12 | } |
| 13 | |
| 14 | const SYSTEM_PROMPT = (targetLang: Language) => ` |
| 15 | You are a translator. |
| 16 | |
| 17 | Your task is to translate the english prompt given by the user to ${targetLang[1]}. |
| 18 | |
| 19 | Restitute the meaning of the text in the target language. |
| 20 | |
| 21 | Just translate the text to ${targetLang[1]}. Do not add any additional information. Do not explain the text. Do not provide any additional context. |
| 22 | |
| 23 | Preserve the Markdown formatting of the text. Do not alter the formatting of the text. |
| 24 | `; |
| 25 | |
| 26 | type LanguageCode = string; |
| 27 | type LanguageName = string; |