Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@oramacloud/secure-proxy
Advanced tools
import { OramaProxy } from "@oramacloud/secure-proxy";
const proxy = new OramaProxy({
api_key: "<Your Orama Secure Proxy API Key>",
});
const embeddings = await proxy.generateEmbeddings(
"red leather shoes",
"openai/text-embedding-ada-002"
);
console.log(embeddings);
// [-0.019633075, -0.00820422, -0.013555876, -0.011825735, 0.006641511, -0.012948156, ...]
Available models:
orama/gte-small
. 384 dimensions, operated by Orama Cloud (preferred)orama/gte-medium
. 768 dimensions, operated by Orama Cloudorama/gte-large
. 1024 dimensions, operated by Orama Cloudopenai/text-embedding-ada-002
. 1536 dimensions, proxied to OpenAIopenai/text-embedding-3-small
. 1536 dimensions, proxied to OpenAIopenai/text-embedding-3-large
. 3072 dimensions, proxied to OpenAIYou can generate chat completions via the Secure Proxy in two different ways:
import { OramaProxy } from "@oramacloud/secure-proxy";
const proxy = new OramaClient({
api_key: "<Your Orama Secure Proxy API Key>",
});
const chatParams = {
model: "openai/gpt-4",
messages: [{ role: "user", content: "Who is Michael Scott?" }],
};
const response = await proxy.chat(chatParams);
console.log(response);
// "Michael Scott is a fictional character from the television show "The Office" (US version) ..."
Available models:
openai/gpt-4o
openai/gpt-4o-mini
openai/gpt-4-turbo
openai/gpt-4
openai/gpt-3.5-turbo
import { OramaProxy } from "@oramacloud/secure-proxy";
const proxy = new OramaClient({
api_key: "<Your Orama Secure Proxy API Key>",
});
const chatParams = {
model: "openai/gpt-4",
messages: [{ role: "user", content: "Who is Michael Scott?" }],
};
for await (const message of proxy.chatStream(chatParams)) {
console.log(message);
}
// Michael
// Scott is
// a fictional
// character from the
// television show
// "The
// Office" (US
// version)
// ...
Available models:
openai/gpt-4o
openai/gpt-4o-mini
openai/gpt-4-turbo
openai/gpt-4
openai/gpt-3.5-turbo
FAQs
Orama SDK client for Node.js, Deno, and Browsers
The npm package @oramacloud/secure-proxy receives a total of 13 weekly downloads. As such, @oramacloud/secure-proxy popularity was classified as not popular.
We found that @oramacloud/secure-proxy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.