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();Log for PerfectCanvas Fingerprints ?
-
Hi I am using a PerfectCanvas request in my BAS project to replace Canvas fingerprints.
How can I know if the images on the website have been replaced correctly?
Maybe there was a Canvas image on the website which was not known by the PerfectCanvas request and could not be replaced. Or something else went wrong.So is there a log file where I can see this information?
I just want to know if my BAS project with Canvas fingerprint replacement is working. -
I think I found it myself:
How to make sure that canvas data was replaced?
In order to check if data for PerfectCanvas was actually replaced check log at BrowserAutomationStudio/apps/CURRENT_BAS_VERSION/s/PROCESS_ID.txt file. FingerprintManager will show log automatically by clicking on “Show canvas replacement log” link.