
Company News
AWS Security Hub Adds Socket for Supply Chain Security
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.
Official Kyma API client — free LLM API gateway. Every open source model, one endpoint.
Official Node.js client for Kyma API — free LLM API gateway. Every open source model, one endpoint.
npm install kyma-ai
import Kyma from "kyma-ai";
const kyma = new Kyma({ apiKey: "kyma-your-key" });
// Simple: ask a question
const answer = await kyma.ask("Explain quantum computing simply");
console.log(answer);
// Full control: OpenAI-compatible chat
const response = await kyma.chat.completions.create({
model: "llama-3.3-70b",
messages: [
{ role: "system", content: "You are a helpful assistant." },
{ role: "user", content: "Hello!" },
],
});
console.log(response.choices[0].message.content);
// Streaming
const stream = await kyma.chat.completions.create({
model: "qwen-3-32b",
messages: [{ role: "user", content: "Write a poem" }],
stream: true,
});
for await (const chunk of stream) {
process.stdout.write(chunk.choices[0]?.delta?.content || "");
}
const models = await kyma.listModels();
models.forEach(m => console.log(m.id));
20+ models from Meta, Google, Alibaba, OpenAI, NVIDIA, and more. All free to start.
const { balance, lifetime_spent } = await kyma.getBalance();
console.log(`Balance: $${balance.toFixed(2)}`);
Kyma wraps the official OpenAI SDK. Access it directly:
const openai = kyma.openai;
// Use any OpenAI SDK feature
kyma- API key from the dashboardFAQs
Official Kyma API client — free LLM API gateway. Every open source model, one endpoint.
We found that kyma-ai demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.

Research
/Security News
Popular npm packages keyv and cacheable compromised.

Security News
A misconfiguration gave three Anthropic models internet access, and one, believing it was in a simulation, shipped a credential-stealing package to PyPI.