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

inception-ai-provider

v0.3.1

Published

Vercel AI SDK provider for the Inception API (Mercury 2)

Readme

inception-ai-provider

Vercel AI SDK provider for the Inception API.

Supports chat completions with streaming, tool calling, structured outputs, and reasoning effort control. Compatible with ai@^6.0.0 (AI SDK v6 / LanguageModelV3).

Installation

npm install inception-ai-provider ai

Setup

Set your API key via environment variable:

export INCEPTION_API_KEY=your-api-key

Or pass it directly when creating the provider:

import { createInception } from "inception-ai-provider"

const inception = createInception({ apiKey: "your-api-key" })

Usage

Chat

import { generateText } from "ai"
import { inception } from "inception-ai-provider"

const { text } = await generateText({
  model: inception("mercury-2"),
  prompt: "What is a diffusion model?",
})

Streaming

import { streamText } from "ai"
import { inception } from "inception-ai-provider"

const result = streamText({
  model: inception("mercury-2"),
  prompt: "Write a short poem.",
})

for await (const chunk of result.textStream) {
  process.stdout.write(chunk)
}

Tool Calling

import { generateText } from "ai"
import { inception } from "inception-ai-provider"
import { z } from "zod"

const { text, toolCalls } = await generateText({
  model: inception("mercury-2"),
  prompt: "What's the weather in San Francisco?",
  tools: {
    getWeather: {
      description: "Get the current weather in a given location",
      parameters: z.object({
        location: z.string().describe("City and state, e.g. 'San Francisco, CA'"),
      }),
      execute: async ({ location }) => `72°F and sunny in ${location}`,
    },
  },
})

Structured Output

import { generateObject } from "ai"
import { inception } from "inception-ai-provider"
import { z } from "zod"

const { object } = await generateObject({
  model: inception("mercury-2"),
  prompt: "Analyze the sentiment of: 'I love this product!'",
  schema: z.object({
    sentiment: z.enum(["positive", "negative", "neutral"]),
    confidence: z.number().min(0).max(1),
  }),
})

Reasoning Effort

import { createInception } from "inception-ai-provider"

const inception = createInception()

// Near-instant responses (skips reasoning)
const fast = inception("mercury-2", { reasoningEffort: "instant" })

// Deep reasoning
const deep = inception("mercury-2", { reasoningEffort: "high" })

Configuration

const inception = createInception({
  baseURL: "https://custom-endpoint.example.com", // default: https://api.inceptionlabs.ai
  apiKey: "your-api-key",                          // default: INCEPTION_API_KEY env var
  headers: { "X-Custom": "value" },                // extra headers per request
})

Compatibility

| inception-ai-provider | ai (peer dep) | Specification | |-----------------------|---------------|-----------------| | 0.3.x | ^6.0.0 | LanguageModelV3 | | 0.2.x | ^5.0.0 | LanguageModelV2 | | 0.1.x | — | LanguageModelV1 |

Limitations

  • No file/image inputs -- text only
  • No embedding models
  • No image generation models
  • topK is accepted but produces a warning (not sent to API)
  • Tool calling and structured outputs are only available in 0.3.x (LanguageModelV3)

License

MIT