diff --git a/app/backend/InputOutputHandler.tsx b/app/backend/InputOutputHandler.tsx index 7270ecb..47a6e1f 100644 --- a/app/backend/InputOutputHandler.tsx +++ b/app/backend/InputOutputHandler.tsx @@ -33,14 +33,16 @@ const InputOutputBackend: React.FC = () => { You use the time format ${timeFormat}. You use the date format ${dateFormat} for all references of dates. You use the ${preferredMeasurement} system. You use the currency ${preferredCurrency}. - You will anwser in ${preferredLanguage}.` + You will only answer in the language (you will receive the country code) ${preferredLanguage}. + But in the case the user specifically states to answer in an other language do that speaking in a + nother language is not stating you should answer in that language. Additionally do not translate your answer into multiple languages` },{ role: "assistant", content: "Hello! How can I help you?" }]) const [liveMessage, setLiveMessage] = useState("") const [inputMessage, setInputMessage] = useState("") const [inputDisabled, setInputDisabled] = useState(false) const [isRecording, setIsRecording] = useState(false) const [audioURL, setAudioURL] = useState(null) - const mediaRecorderRef = useRef(null) + const mediaRecorderRef = useRef(null) const audioChunks = useRef([])