This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// talk to OpenAI GPT model (ChatGPT) | |
// adapted from: | |
// https://platform.openai.com/docs/api-reference/making-requests | |
const openaiURL = "https://api.openai.com/v1/chat/completions"; // can POST to this 3rd party URL | |
const themodel = "gpt-3.5-turbo"; // the OpenAI model we are going to talk to | |