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

@tailored-ai/provider-deepseek

v0.1.10

Published

DeepSeek model provider for Tailored AI agents. Ships as a register(ctx) plugin — install with `tai plugin install @tailored-ai/provider-deepseek`, list under `plugins:`, and select with `agent.defaultProvider: deepseek`.

Downloads

31

Readme

@tailored-ai/provider-deepseek

DeepSeek model provider for Tailored AI agents — DeepSeek's V4 hybrid models, low-cost and strong.

DeepSeek speaks the OpenAI wire format, so chat, streaming, tool calling, and model discovery (listModels) come straight from core's OpenAIProvider. On top of that this plugin exposes DeepSeek's one non-standard knob — the per-request thinking toggle.

Install

tai plugin install @tailored-ai/provider-deepseek

Configure

plugins:
  - "@tailored-ai/provider-deepseek"

providers:
  deepseek:
    apiKey: "${DEEPSEEK_API_KEY}"          # https://platform.deepseek.com/api_keys
    defaultModel: "deepseek-v4-flash"
    thinking: false                        # non-thinking: fast, reliable tool calls

agent:
  defaultProvider: deepseek

Per-agent override — keep a local model for everyday work, reach for DeepSeek where it helps:

agents:
  researcher:
    provider: deepseek
    model: "deepseek-v4-pro"

| Field | Required | Notes | |---|---|---| | apiKey | yes | Use ${DEEPSEEK_API_KEY} to read from the environment. | | defaultModel | yes | deepseek-v4-flash or deepseek-v4-pro. | | thinking | no | false = non-thinking, true = thinking. Omit to use the model's native default (the V4 models think by default). | | baseUrl | no | Defaults to https://api.deepseek.com. Override for proxies. |

Models

| Model | What it is | Tool calling | |---|---|---| | deepseek-v4-flash | V4 hybrid, lower-latency tier. The right default for an agent. | Yes | | deepseek-v4-pro | V4 hybrid, most capable. For hard problems. | Yes |

Both are hybrids: a single model that either answers directly (non-thinking) or reasons first (thinking), selected per request by thinking.

  • thinking: false — snappy, no reasoning tokens, reliable tool calls. This is the durable version of the old deepseek-chat behavior. The right default for tool-driven agent work.
  • thinking: true — reasons before answering; stronger on hard problems, but slower and token-hungrier. Give it a generous maxTokens — a small budget gets eaten by the reasoning pass and the reply comes back empty with finish_reason: length.

The loop can still override the mode per call by passing extra: { thinking: { type: "enabled" } }.

A note on deepseek-chat / deepseek-reasoner

Those two model names are the non-thinking and thinking aliases of deepseek-v4-flash. DeepSeek deprecates them on 2026-07-24. Use deepseek-v4-flash with thinking instead — same model, no deprecation.

Not yet

In thinking mode the chain-of-thought (reasoning_content) isn't surfaced — only the final answer comes through. Streaming and tool calling work; the reasoning trace is dropped.

Development

pnpm --filter @tailored-ai/provider-deepseek run build
pnpm --filter @tailored-ai/provider-deepseek run test

License

MIT