early-train-33247
08/03/2023, 8:38 PMen
or fr
ℹ️ Your bot will now speak that language and translate all messages to it! You can use your preferred language's two-digit code here as long as it is within the ~90 or so languages ChatGPT speaks. See a list here: https://botpress.com/blog/list-of-languages-supported-by-chatgpt and a list of language codes here: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
Method 2: Hard-coding the language with a Execute Code card
Difficulty: Low
1. Add an execute code card with this content (remember to change the language code)
js
user.TranslatorAgent.language = 'fr'
Method 3: Let the user pick language with buttons
Difficulty: Medium
1. Create a capture card with each possible language as a choice.
2. After the use selects a language use a Execute Code card with a content like this, but tailored to the language choices from step 1:
js
if (event.preview == '🇬🇧') {
user.TranslatorAgent.language = 'en'
} else if (event.preview == '🇫🇷') {
user.TranslatorAgent.language = 'fr'
} else if (event.preview == '🇪🇸') {
user.TranslatorAgent.language = 'es'
}
Method 4: Automatically detect the user's language and respond in kind
Difficulty: Low
In your Translator Agent, make sure the options for "Automatically Detect Language" and "Detect Language at Each Turn" are enabled. Now the bot will change the language whenever the user speaks a new language.prehistoric-keyboard-27594
08/25/2023, 5:20 AMacceptable-kangaroo-64719
08/25/2023, 11:17 AMrefined-sandwich-47414
09/10/2023, 2:00 PMquiet-raincoat-89190
09/10/2023, 4:03 PMsparse-quill-64677
09/10/2023, 8:56 PMjolly-policeman-82775
09/16/2023, 6:36 AMjolly-policeman-82775
09/16/2023, 6:36 AMjolly-policeman-82775
09/16/2023, 6:37 AMacceptable-kangaroo-64719
09/18/2023, 10:31 AMjolly-policeman-82775
09/18/2023, 2:19 PMjolly-policeman-82775
09/18/2023, 2:19 PMnumerous-terabyte-51930
09/26/2023, 4:15 PMgifted-helmet-37393
09/26/2023, 4:15 PMacceptable-kangaroo-64719
09/27/2023, 10:09 AMprehistoric-salesclerk-43597
09/29/2023, 8:06 PMtall-apple-15573
10/16/2023, 4:36 AMtall-apple-15573
10/16/2023, 4:37 AMearly-train-33247
10/20/2023, 5:05 PMearly-train-33247
10/20/2023, 5:05 PMtall-apple-15573
10/23/2023, 9:24 AMpolite-plastic-40321
03/22/2024, 4:14 AMfaint-tiger-36463
04/19/2024, 9:41 AMcuddly-crowd-71371
05/04/2025, 10:24 PMhandsome-train-16291
05/05/2025, 8:09 AMacceptable-kangaroo-64719
05/05/2025, 4:33 PMhandsome-train-16291
05/06/2025, 6:53 AM