npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@coralbricks/ai-sdk-provider

v0.1.1

Published

Vercel AI SDK provider for CoralBricks — GLM and DeepSeek open models with up to 1M context, free cached input.

Readme

@coralbricks/ai-sdk-provider

Vercel AI SDK provider for CoralBricks — open-model inference (GLM 5.3, GLM 5.3 Flash, DeepSeek V4.1 Flash) with up to 1M-token context and free cached input.

A thin, typed wrapper over @ai-sdk/openai-compatible that presets the gateway endpoint and model catalog, so it works with zero configuration like the first-party @ai-sdk/* providers.

Install

npm install @coralbricks/ai-sdk-provider ai

Usage

Set CORALBRICKS_API_KEY (get a key at coralbricks.ai/api-keys), then:

import { generateText } from 'ai'
import { coralbricks } from '@coralbricks/ai-sdk-provider'

const { text } = await generateText({
  model: coralbricks('glm-5.3-fp4'),
  prompt: 'Explain prompt caching in one sentence.',
})

Streaming, tools, and structured output work through the standard AI SDK functions (streamText, generateObject, …) — CoralBricks speaks the OpenAI wire format, including streaming tool calls.

Custom instance

import { createCoralBricks } from '@coralbricks/ai-sdk-provider'

const coralbricks = createCoralBricks({
  apiKey: process.env.MY_KEY,          // default: CORALBRICKS_API_KEY
  baseURL: 'https://inference.coralbricks.ai/v1', // default
  headers: { 'x-my-header': '1' },
})

Models

| Model | Model ID | Context | Input $/M | Cache Write $/M | Output $/M | | --- | --- | --- | --- | --- | --- | | GLM 5.3 | glm-5.3-fp4 | 1M | $1.12 | $1.68 | $4.40 | | GLM 5.3 Flash | glm-5.3-flash-fp4 | 1M | $0.15 | $0.23 | $0.50 | | DeepSeek V4.1 Flash | deepseek-v4.1-flash-fast-fp4 | 1M | $0.30 | $0.09 | $1.20 |

Cached input tokens are always free; prompt tokens CoralBricks has not cached yet bill once at the Cache Write rate, in place of the Input rate. Rates per coralbricks.ai/pricing. The model-id type is open (string & {}), so a newly launched model works before this package updates.

License

Apache-2.0