-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathapp.js
48 lines (46 loc) · 1.33 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
var http = require('https')
class OpenAiAPI {
constructor(personalKey, apiBase = 'api.openai.com', version = "v1") {
this.__personalKey = personalKey;
this.__apiBase = apiBase;
this.__version = version;
this.__httpOptions = {
hostname: apiBase,
port: 443,
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + personalKey
}
};
}
CompletionsCreate(prompt, max_tokens=5, engine="davinci", moreOptions) {
var self = this;
var promise = new Promise(function(done, error) {
var otherOptions = {path: "/"+self.__version+"/engines/"+engine+"/completions"}
var options = {...otherOptions, ...self.__httpOptions }
const defaultPostData = {
'prompt': prompt,
'max_tokens': max_tokens
}
var postData = JSON.stringify({...moreOptions, ...defaultPostData})
var responseData = "";
const req = http.request(options, (res) => {
res.setEncoding('utf8');
res.on('data', (chunk) => {
responseData += chunk
});
res.on('end', () => {
done(JSON.parse(responseData))
});
});
req.on('error', (e) => {
error(e)
});
req.write(postData);
req.end();
})
return promise;
}
}
module.exports = OpenAiAPI