mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-02-06 06:54:58 +00:00
59 lines
1.7 KiB
JavaScript
59 lines
1.7 KiB
JavaScript
// chatgpt.js
|
|
// Namhyeon Go <abuse@catswords.net>
|
|
// https://github.com/gnh1201/welsonjs
|
|
//
|
|
// ***SECURITY NOTICE***
|
|
// ChatGPT requires an internet connection, and data may be transmitted externally. Users must adhere to the terms of use and privacy policy.
|
|
// - Privacy Policy: https://openai.com/policies/row-privacy-policy/
|
|
//
|
|
var FILE = require("lib/file");
|
|
var HTTP = require("lib/http");
|
|
var CRED = require("lib/credentials");
|
|
|
|
function chat(content) {
|
|
var answers = [];
|
|
|
|
var apikey = CRED.get("apikey", "chatgpt");
|
|
console.log("OpenAI (ChatGPT) API KEY:", apikey);
|
|
|
|
var response = HTTP.create("MSXML")
|
|
.setVariables({
|
|
"OPENAI_API_KEY": apikey
|
|
})
|
|
.setHeaders({
|
|
"Content-Type": "application/json",
|
|
"Authorization": "Bearer {OPENAI_API_KEY}"
|
|
})
|
|
.setRequestBody({
|
|
"model": "gpt-4o",
|
|
"messages": [
|
|
{
|
|
"role": "developer",
|
|
"content": "Write all future code examples in JavaScript ES3 using the exports variable. Respond exclusively in code without blocks."
|
|
}, {
|
|
"role": "user",
|
|
"content": content
|
|
}
|
|
]
|
|
})
|
|
.open("post", "https://api.openai.com/v1/chat/completions")
|
|
.send()
|
|
.responseBody
|
|
;
|
|
|
|
if ("choices" in response && response.choices.length > 0) {
|
|
response.choices.forEach(function(x) {
|
|
answers.push(x.message.content);
|
|
});
|
|
}
|
|
|
|
return s;
|
|
}
|
|
|
|
exports.chat = chat;
|
|
|
|
exports.VERSIONINFO = "OpenAI (ChatGPT) interface version 0.1.2";
|
|
exports.AUTHOR = "abuse@catswords.net";
|
|
exports.global = global;
|
|
exports.require = global.require;
|