Asked
Resolved Resolved by DJ Sures!

Openai Chatgpt Und Openai Chatbot Gleichzeitig Mit Bing Spracherkennung Nutzen

Kann ich mit der Bing Spracherkennung gleichzeitig in einem Projekt die Skills "OpenAI ChatGPT" und "OpenAI Chatbot" nutzen?



Related Hardware (view all EZB hardware)
EZ-B V4 by EZ-Robot
EZ-B v4/2 robot controller: dual Cortex ARM, Wi-Fi, audio/video, 24 servo/digital ports, I2C/UART, camera and Synthiam ARC control for custom robots
Wi-Fi / USB
Servos 24
Camera
Audio
UART 3
I2C
ADC 8
Digital 24

Related Robot Skills (view all robot skills)
Accurate Bing cloud speech-to-text for ARC: wake-word, programmable control, $BingSpeech output, Windows language support, headset compatible
ChatGPT conversational AI for ARC robots-configurable personality, memory, image description, script execution, speech and API integration.

ARC Pro

Upgrade to ARC Pro

Experience early access to the latest features and updates. You'll have everything that is needed to unleash your robot's potential.

Author Avatar
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.
Author Avatar
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?

Author Avatar
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
Author Avatar
PRO
Germany
#4  

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

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