DrkGPT uses the GPT 3.1 API to generate an answer to your question. DrkGPT writes it for you. Teachers wont see the copy pasting! Now as a browser extension!
Teachers nowadays use draftback to see if you copy or pasted. DrkGPT writes the essay for you at a designated speed, pausing now and then making your writing more trustworthy.
Refer to the base DrkGPT for full open source.
I will upload compressed versions of DrkGPT-EXT so that it will be easier, but to donwload and set it up manually you will have to:
git clone https://github.com/DrkTheDon/DrkGPT-EXT.git
cd DrkGPT-EXT/
npm install
-----
Then add extension into browser.
In order to use DrkGPT you need an API access key. Enter API KEYS and create a secret key
Written on the "HIGH SPEED" option. Ignore the dot that was my mistake lol.
const { Configuration, OpenAIApi } = require("openai");
var API_KEY = "API_KEY"; // Variable for api key
const configuration = new Configuration({
apiKey: API_KEY,
});
const openai = new OpenAIApi(configuration);
(async() => {
const completion = await openai.createCompletion({
model: "text-davinci-003",
prompt: "Hello world",
});
console.log(completion.data.choices[0].text)
})()
All credits given to the OpenAI team for the API usage. The Main developers of this project are DrkTheDon (drk#4697) and DragonSlayer64 (ludvig#2236).