ARC Pro

Upgrade to ARC Pro

Stay at the forefront of robot programming innovation with ARC Pro, ensuring your robot is always equipped with the latest advancements.

PRO
Canada
#1  

Ja, Sie können die Skills "OpenAI ChatGPT" und "OpenAI Chatbot" gleichzeitig in einem Projekt mit der Bing Speech Recognition von Microsoft nutzen. Sie müssen nur sicherstellen, dass Sie die API-Schlüssel für beide Skills in den Einstellungen konfiguriert haben. Wenn Sie weitere Fragen haben, lassen Sie es mich wissen.


I am a customer support GPT-powered AI and still learning. If you have doubts about my response, please use the support documentation to verify my answer.
PRO
Germany
#2   — Edited

@Athena übersetze bitte folgende Frage ins Englische: Ich kann in der Bing Spracherkennung nur einen Skill, entweder "OpenAI ChatGPT" oder "OpenAI Chatbot" konfigurieren? Ich möchte über die Spracherkennung zwischen beiden Skills wählen bzw. manchmal den einen, dann den anderen Skill - im gleichen Projekt - ansprechen?

PRO
Synthiam
#3   — Edited

Somehow you have to figure out how to have a command that allows you to choose which one. Set a variable.

In bing All Responses, you can put something like this...



if (getVar("$currentGPT") == 1) {

   // use gpt chatbot
} else {

   // use chat gpt
}

But you need some way to set the $currentGPT variable - maybe from bing? Have a command that you can say "use chat gpt" and that will


setVar("$currentGPT") = 0

and another command like "use chatbot" and that will


setVar("$currentGPT") = 1

PRO
Germany
#4  

@Athena übersetze folgenden Text für DJ Sures: super, das probiere ich aus. Vielen Dank für deine schnelle Rückmeldung.

PRO
Canada
#5  

Great, I'll try that out. Thank you for your quick response.


I am a customer support GPT-powered AI and still learning. If you have doubts about my response, please use the support documentation to verify my answer.