Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
openai-api
Advanced tools
This package is a tiny node wrapper for the openAI API, if you find any issue please feel free to message me or open a PR :).
If you have any ideas on how to improve the library feel free to let me know as well!
You can also visit the Issue tracker for more information or open a new issue.
This project is not affiliated with OpenAI and was written purely out of interest.
npm i openai-api
const OpenAI = require('openai-api');
// Load your key from an environment variable or secret management service
// (do not include your key directly in your code)
const OPENAI_API_KEY = process.env.OPENAI_API_KEY;
const openai = new OpenAI(OPENAI_API_KEY);
(async () => {
const gptResponse = await openai.complete({
engine: 'davinci',
prompt: 'this is a test',
maxTokens: 5,
temperature: 0.9,
topP: 1,
presencePenalty: 0,
frequencyPenalty: 0,
bestOf: 1,
n: 1,
stream: false,
stop: ['\n', "testing"]
});
console.log(gptResponse.data);
})();
{
id: 'some-long-id',
object: 'text_completion',
created: 1616791508,
model: 'davinci:2020-05-03',
choices: [
{
text: " predicted text...",
index: 0,
logprobs: null,
finish_reason: 'length'
}
]
}
(async () => {
const gptResponse = await openai.search({
engine: 'davinci',
documents: ["White House", "hospital", "school"],
query: "the president"
});
console.log(gptResponse.data);
})();
(async () => {
const gptResponse = await openai.answers({
"documents": ["Puppy A is happy.", "Puppy B is sad."],
"question": "which puppy is happy?",
"search_model": "ada",
"model": "curie",
"examples_context": "In 2017, U.S. life expectancy was 78.6 years.",
"examples": [["What is human life expectancy in the United States?", "78 years."]],
"max_tokens": 5,
"stop": ["\n", "<|endoftext|>"],
});
console.log(gptResponse.data);
})();
(async () => {
const gptResponse = await openai.classification({
"examples": [
["A happy moment", "Positive"],
["I am sad.", "Negative"],
["I am feeling awesome", "Positive"]
],
"labels": ["Positive", "Negative", "Neutral"],
"query": "It is a raining day :(",
"search_model": "ada",
"model": "curie"
});
console.log(gptResponse.data);
})();
(async () => {
const gptResponse = await openai.engines();
console.log(gptResponse.data);
})();
The token limit is 2048 for completions using the OpenAI API. This method allows you to get the number of tokens in your prompt. This is done offline (no API call is made).
openai.encode('This is an encoding test. Number of tokens is not necessarily the same as word count.').then((result) => {
console.log("Number of tokens for string:" + result.length);
});
FAQs
A tiny client module for the openAI API
The npm package openai-api receives a total of 1,610 weekly downloads. As such, openai-api popularity was classified as popular.
We found that openai-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.