@elasti/sdk
v0.0.1
Published
E2E encrypted AI inference and vector embeddings SDK
Maintainers
Readme
Elasti
E2E encrypted AI inference and vector embeddings SDK
Coming Soon
Requests are encrypted on your machine and processed inside secure hardware enclaves. Your prompts, responses, and embeddings remain private. Not even we can see your data.
import { Elasti } from "elasti";
const client = new Elasti({
apiKey: process.env.ELASTI_API_KEY,
});
const response = await client.inference.create({
model: "elasti_genesis",
mode: "ephemeral",
messages: [{ role: "user", content: "Explain 1984 in one sentence." }],
});
console.log(response.output_text);Features
Fully encrypted inference Prompts and responses are encrypted locally before they leave your machine.
Homomorphic vector search Search encrypted embeddings without ever decrypting them. Your cloud context remains invisible to the infrastructure.
Zero plaintext on the wire Encryption occurs within the SDK before any network transmission begins.
Flexible session modes Support for persistent sessions and ephemeral modes that generate unique keys per request.
Install
npm install elasti