Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
@oramacloud/client
Advanced tools
npm i @oramacloud/client
import { OramaClient } from '@oramacloud/client'
const client = new OramaClient({
endpoint: '<Your Orama Cloud Endpoint>',
api_key: '<Your Orama Cloud API Key>'
})
const results = await client.search({
term: 'red leather shoes',
})
const results = await client.search({
term: 'red leather shoes',
where: {
price: {
lte: 9.99
},
gender: 'unisex'
},
limit: 5,
offset: 1
})
import { OramaProxy } from '@oramacloud/client'
const proxy = new OramaClient({
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/client'
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-4-1106-preview
openai/gpt-4
openai/gpt-3.5-turbo
openai/gpt-3.5-turbo-16k
import { OramaProxy } from '@oramacloud/client'
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-4-1106-preview
openai/gpt-4
openai/gpt-3.5-turbo
openai/gpt-3.5-turbo-16k
import { OramaCloud, useSearch } from '@oramacloud/client/react'
export function App() {
return (
<OramaCloud endpoint='<Your Orama Cloud Endpoint>' apiKey='<Your Orama Cloud API Key>'>
<Search />
</OramaCloud>
)
}
function Search() {
const { results, error } = useSearch({
term: 'red leather shoes',
limit: 10,
offset: 5
})
return (
<>
{results.hits.map((hit) => {
<div key={hit.id}>
<p> {hit.document.myCustomProperty} </p>
</div>
})}
</>
)
}
Create an orama.ts file in the src folder to create an Orama Cloud Client instance that you’ll use throughout your application.
import { OramaCloud } from '@oramacloud/client/vue'
export const orama = new OramaCloud({
apiKey: '<Your Orama Cloud API Key>',
endpoint: '<Your Orama Cloud Endpoint>'
})
<template>
<li v-for="hit in searchResults?.hits" :key="hit.id">
{{ hit.id }}
</li>
</template>
<script setup>
import { ref, onMounted } from 'vue'
import { orama } from './orama'
const searchResults = ref(null)
onMounted(async () => {
if (orama) {
const { results, error } = await orama.search({
term: 'guitar',
limit: 5
})
searchResults.value = results
}
})
</script>
FAQs
Orama SDK client for Node.js, Deno, and Browsers
The npm package @oramacloud/client receives a total of 1,658 weekly downloads. As such, @oramacloud/client popularity was classified as popular.
We found that @oramacloud/client 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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.