It does not work if I do this:
const OpenAI = require('openai'); const openai = new OpenAI({ apiKey: [[CHATGPTAPIKEY]] }); async function main() { const completion = await openai.chat.completions.create({ model: [[MODEL]], messages: [ {"role": "system", "content": "You are a "+[[COMMENTSTYLE]]+" assistant."}, {"role": "user", "content": [[SAVED_TEXT]]} ], temperature: [[TEMPERATURE2]], max_tokens: 150, stop: ["\n", "User:"], n: 1 }); [[OUTPUT]] = completion.choices[0]; } main();Understanding the BAS
-
@Seanxxxxs then maybe its not yours
-
@Seanxxxxs watch videos in youtube; maybe it would help
-
@clarabellerising I know it now, cant add resources when im inside the hit
-
@Seanxxxxs you cant add resources while you in record mode inside, you need to create them before getting into record mode
-
@clarabellerising You can create it, it just needs to restart the script)

-
@Seanxxxxs No way, you have to restart your script, or if you are a cool specialist, usually you create all the necessary resources for the software at once
-
@xmypuk yes thanks I did it already my problem now is cant join discord cause its showing unable to join, I want to loop the process of rejoining, any suggestion to do that. I'm making from scratch, I wanted to see the existing free BAS script out there to see what kind of method I can use to loop, or create a process until the discord account join the group.

