Welcome to Synthiam!

The easiest way to program the most powerful robots. Use technologies by leading industry experts. ARC is a free-to-use robot programming software that makes servo automation, computer vision, autonomous navigation, and artificial intelligence easy.

Get Started

ARC Pro

Upgrade to ARC Pro

Unleash your creativity with the power of easy robot programming using Synthiam ARC Pro

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...

Code:



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 

Code:


setVar("$currentGPT") = 0


and another command like "use chatbot" and that will

Code:


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.