
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@oramacloud/ai-sdk-provider
Advanced tools
A provider for Vercel's AI SDK that enables seamless integration with Orama's search and chat capabilities.
npm install @oramacloud/ai-sdk-provider
// Create an Orama provider instance
const provider = oramaProvider({
// Required configurations
endpoint: process.env.ORAMA_API_URL,
apiKey: process.env.ORAMA_API_KEY,
// Optional configurations
userContext?: string | Record<string, any>; // Context for QA sessions
inferenceType?: "documentation"; // Currently only supports "documentation"
searchMode?: "fulltext" | "vector" | "hybrid"; // Default: "fulltext"
searchOptions?: OramaSearchOptions; // Additional search parameters
})
interface OramaSearchOptions {
mode?: "fulltext" | "vector" | "hybrid";
where?: Record<string, any>;
sortBy?: Array<{ property: string; order?: "asc" | "desc" }>;
facets?: Record<string, any>;
limit?: number;
boost?: Record<string, number>;
order?: "asc" | "desc";
}
import { streamText } from 'ai';
const response = await streamText({
model: provider.ask(),
messages: [{
role: 'user',
content: 'What is vector search?'
}]
});
const response = await generateText({
model: provider.search(),
messages: [{
role: 'user',
content: 'vector search documentation'
}]
});
Contributions are welcome! Please feel free to submit a Pull Request.
Apache 2.0. Read the full license here
FAQs
Orama provider for Vercel AI SDK
The npm package @oramacloud/ai-sdk-provider receives a total of 0 weekly downloads. As such, @oramacloud/ai-sdk-provider popularity was classified as not popular.
We found that @oramacloud/ai-sdk-provider demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 9 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.