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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@sisu-ai/adapter-anthropic

v7.0.0

Published

Anthropic Messages API adapter with tool calling and streaming.

Readme

@sisu-ai/adapter-anthropic

Anthropic Messages API adapter with tool calling and streaming.

Tests CodeQL License Downloads PRs Welcome

Setup

npm i @sisu-ai/adapter-anthropic
  • Env: ANTHROPIC_API_KEY (preferred) or API_KEY required
  • Optional base URL: ANTHROPIC_BASE_URL (or BASE_URL)
  • Optional debug: DEBUG_LLM=1 to log redacted request/response summaries on errors

Usage

import { anthropicAdapter } from '@sisu-ai/adapter-anthropic';

const model = anthropicAdapter({ model: 'claude-3-5-sonnet-20240620' });
// with a self-hosted proxy
const model = anthropicAdapter({ model: 'claude-3-opus-20240229', baseUrl: 'https://api.anthropic.com' });

Tools

  • Sends tools in Anthropic format (name, description, input_schema).
  • Sends tool_choice only when tools exist (Anthropic rejects tool_choice without tools).
  • Maps assistant tool calls to { id, name, arguments } for the middleware loop.
  • Maps tool results into Anthropic tool_result blocks and back.

Streaming

  • Supports server‑sent events from the Messages API.
  • Emits { type: 'token', token } events for content deltas and a final { type: 'assistant_message', message }.

Options

anthropicAdapter({
  model: 'claude-3-5-sonnet-20240620',
  apiKey?: string,            // default: ANTHROPIC_API_KEY or API_KEY
  baseUrl?: string,           // default: https://api.anthropic.com (or ANTHROPIC_BASE_URL / BASE_URL)
  anthropicVersion?: string,  // default: 2023-06-01
  timeout?: number,           // default: 60000 ms
  maxRetries?: number,        // default: 3 (with backoff; 4xx except 429 are not retried)
});

Message mapping

  • System messages → system string (joined if multiple system messages appear)
  • User messages → { role: 'user', content: [{ type: 'text', text }] }
  • Assistant messages with tool calls → tool_use blocks with { id, name, input }
  • Tool messages → user tool_result blocks with { tool_use_id | name, content }

Usage reporting

The adapter maps usage.input_tokens and usage.output_tokens to { promptTokens, completionTokens, totalTokens }.

Debugging

  • DEBUG_LLM=1 prints sanitized payloads and error bodies.
  • Combine with your app logger’s LOG_LEVEL=debug to see middleware events.

Community & Support

Discover what you can do through examples or documentation. Check it out at https://github.com/finger-gun/sisu. Example projects live under examples/ in the repo.