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();How do i load a proxy into a variable from a tex file
-
Sorry - Simple question; how do i load a proxy into a variable from a tex file which has more information
123.123.123.1: 3128:email@email.com:password:file_to_upload
I want to load the variable PROXY with 123.123.123.1: 3128 in parse (but the : is affect this).
What i`m trying to do is load account details from a tex file which has the proxy, email, pw on one line so the account uses the same proxy and not a random proxy?
any assists is appreciated.
-



