
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@hyperbolic/ai-sdk-provider
Advanced tools
The [Hyperbolic](https://hyperbolic.xyz/) provider for the [Vercel AI SDK](https://sdk.vercel.ai/docs) gives access to any model found at <https://app.hyperbolic.xyz/models>.
The Hyperbolic provider for the Vercel AI SDK gives access to any model found at https://app.hyperbolic.xyz/models.
This is based on the OpenRouter provider for the Vercel AI SDK, with a number of changes to support the Hyperbolic API and add image generation support.
# For pnpm
pnpm add @hyperbolic/ai-sdk-provider
# For npm
npm install @hyperbolic/ai-sdk-provider
# For yarn
yarn add @hyperbolic/ai-sdk-provider
You can create a provider instance with createHyperbolic from @hyperbolic/ai-sdk-provider:
import { createHyperbolic } from "@hyperbolic/ai-sdk-provider";
import { generateText } from "ai";
import { createHyperbolic } from "@hyperbolic/ai-sdk-provider";
const hyperbolic = createHyperbolic({
apiKey: process.env.HYPERBOLIC_API_KEY, // Found in settings after logging in at https://app.hyperbolic.xyz
});
const { text } = await generateText({
model: hyperbolic.chat("deepseek-ai/DeepSeek-R1"),
prompt: "Write a vegetarian lasagna recipe for 4 people.",
});
This list is not a definitive list of models supported by Hyperbolic, as it constantly changes as we add new models (and deprecate old ones) to our system.
You can find the latest list of models supported by Hyperbolic here.
const { text } = await generateText({
model: hyperbolic.chat("deepseek-ai/DeepSeek-R1"),
prompt: "Write a vegetarian lasagna recipe for 4 people.",
});
const { text } = await generateText({
model: hyperbolic.completion("deepseek-ai/DeepSeek-R1"),
prompt: "The capital of France is",
});
import { experimental_generateImage as generateImage } from "ai";
// Text to Image
const { images } = await generateImage({
model: hyperbolic.image("SDXL1.0-base"),
prompt: "A beautiful sunset over a calm ocean",
size: "1024x1024",
providerOptions: {
hyperbolic: {
cfgScale: 5,
steps: 30,
negativePrompt: "low quality, blurry, distorted",
enableRefiner: false,
} satisfies HyperbolicImageProviderOptions,
},
});
FAQs
The [Hyperbolic](https://hyperbolic.xyz/) provider for the [Vercel AI SDK](https://sdk.vercel.ai/docs) gives access to any model found at <https://app.hyperbolic.xyz/models>.
We found that @hyperbolic/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 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.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.