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.
chimera-api
Advanced tools
This project is a simple script for interacting with the Chimera API. The main class is Chimera
, and it has methods for chat completion, image generation, text-to-speech generation, and content moderation.
Install the project using npm:
npm install chimera-api
This is an ESM module, you won't be able to use it with require()
. You will need to use import
instead:
(async () => {
const ChimeraModule = await import("chimera-api");
const Chimera = ChimeraModule.default;
const apiKey = "YOUR_API_KEY";
const chimera = new Chimera(apiKey);
const createChatCompletion = await chimera.chatCompletion({
model: "gpt-4",
messages: [
{
content: "Hello, how are you?",
role: "user",
},
],
});
console.log(createChatCompletion);
process.exit(0);
})();
First, import the Chimera
class:
import Chimera from "chimera-api";
Create a new instance of the class with your API key:
const chimera = new Chimera("your_api_key");
If you need to use a proxy, provide a configuration object as the second parameter to the constructor:
const chimera = new Chimera("your-api-key", {
host: "proxy-host",
port: "proxy-port",
protocol: "http",
auth: {
username: "proxy-username",
password: "proxy-password",
}, // optional
});
You can then use the class methods as follows:
let chatCompletionRequest = {
model: "gpt-4",
messages: [{ role: "user", content: "Hello" }],
// other properties...
};
chimera
.chatCompletion(chatCompletionRequest)
.then((response) => console.log(response))
.catch((error) => console.error(error));
Any other model that you want to use might follow this code aswell.
let imageRequest = {
prompt: "E G G.",
// other properties...
};
chimera
.imageGeneration(imageRequest)
.then((response) => console.log(response))
.catch((error) => console.error(error));
let ttsRequest = {
text: "Hello, world!",
};
chimera
.textToSpeech(ttsRequest)
.then((response) => console.log(response))
.catch((error) => console.error(error));
chimera
.Moderation("some potentially offensive text")
.then((response) => console.log(response))
.catch((error) => console.error(error));
chimera
.Whisper(
{
file: createReadStream("./path/to/file.mp3"),
fileName: "name.mp3",
language: "pt-BR",
},
"audio/translations"
)
chimera
.Whisper(
{
file: createReadStream("./path/to/file.mp3"),
fileName: "name.mp3",
language: "pt-BR",
},
"audio/transcriptions"
)
There are also some examples on the test
folder.
The Proxy handler is 100% not a thing to be used with a single API: It provides advanced management of Axios instances, such as per-URL instance caching and optional proxy support. Originally, it was designed for managing multiple API endpoints, hence the proxy handler might seem over-engineered for a single API wrapper. It's optional and doesn't affect the main functionality if not utilized.
TLDR: The Proxy Handler is way too overengineered for a single API wrapper, but it's optional and doesn't affect the main functionality if not utilized.
Mainly on the Discord Server You can also create an issue if what you're facing is an error from this package. (Please, do not ask for help on the discord if this is a package-related issue, this is not in any way attributed to the main devs on Chimera.)
This project is licensed under the GNU General Public License v3.0.
Please note that this is not an official project of the developers of Chimera. This was made out of personal interest and may be helpful to others. This comes with no guarantees or support, but feel free to use it as you wish within the bounds of the license.
Enjoy!
me made dis :)
FAQs
An unoficial wrapper made for the Chimera API
The npm package chimera-api receives a total of 0 weekly downloads. As such, chimera-api popularity was classified as not popular.
We found that chimera-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.