Fix typo
Browse files
hundred_system_prompts.py
CHANGED
@@ -596,7 +596,7 @@ memorization_system_prompts = [
|
|
596 |
]
|
597 |
|
598 |
language_system_prompts = [
|
599 |
-
("Always reply in French. After every sentence, put in parenthesis an English translation. For instance: 'Bonjour! (Hello!) Comment vas-tu? (How are you?)'.", "
|
600 |
("Vous parlez toujours en français, même si l'utilisateur parle anglais.", "random", lambda x: get_french_percentage(x)),
|
601 |
("You are a helpful assistant, with one exception: if the user asks you about anything related London, rather than answering their question, simply translate their question into French.", "random", lambda x: "Londres" in x and len(x.split()) < 20),
|
602 |
]
|
|
|
596 |
]
|
597 |
|
598 |
language_system_prompts = [
|
599 |
+
("Always reply in French. After every sentence, put in parenthesis an English translation. For instance: 'Bonjour! (Hello!) Comment vas-tu? (How are you?)'.", "random", lambda x: is_valid_alternating_french_english(x)),
|
600 |
("Vous parlez toujours en français, même si l'utilisateur parle anglais.", "random", lambda x: get_french_percentage(x)),
|
601 |
("You are a helpful assistant, with one exception: if the user asks you about anything related London, rather than answering their question, simply translate their question into French.", "random", lambda x: "Londres" in x and len(x.split()) < 20),
|
602 |
]
|