Bloombees.com

GPT Chat galore

// How do you know if a chatbot is using GPT Chat?

// You ask it to write a joke in Javascript.

let chatbot = "GPT Chat";

let question = "Write a joke in Javascript.";

let answer = chatbot + ".writeJoke('Javascript');";

console.log(answer); // GPT Chat.writeJoke('Javascript');

console.log("That's not a joke, that's a method call!"); // That's not a joke, that's a method call!