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

@sisu-ai/adapter-anthropic

v10.0.0

Published

Connect Sisu to Anthropic models with first-class tool calling, streaming, and vision input support.

Readme

@sisu-ai/adapter-anthropic

Connect Sisu to Anthropic models with first-class tool calling, streaming, and vision input support.

Tests CodeQL License Downloads PRs Welcome

Setup

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

Transport and compatibility

  • The adapter now uses the official @anthropic-ai/sdk Messages API transport.
  • Public Sisu behavior is intentionally preserved: message normalization, tool-call mapping, streaming token/assistant_message events, and usage mapping.
  • Existing app code should continue to work unchanged. If you relied on low-level fetch stubs in tests, prefer Response-compatible mocks or SDK-boundary mocks.

Usage

import { anthropicAdapter, anthropicEmbeddings } 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' });

const embeddings = anthropicEmbeddings({
  baseUrl: process.env.EMBEDDINGS_BASE_URL!,
  model: process.env.EMBEDDINGS_MODEL!,
  apiKey: process.env.EMBEDDINGS_API_KEY,
});

Embeddings

  • Anthropic does not provide a native embeddings API.
  • anthropicEmbeddings(...) is a convenience helper for Anthropic-centered apps that use a compatible third-party embeddings endpoint.
  • You must pass baseUrl and model explicitly; there are no Anthropic-specific defaults.

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.

Vision

  • Supports mixed text + image user messages.
  • Accepts content parts (content / contentParts) with { type: 'text', text } and { type: 'image_url', image_url }.
  • Accepts convenience fields: image, image_url, images, image_urls.
  • Image inputs may be:
    • data:image/...;base64,... URLs
    • raw base64 payloads
    • remote http(s) URLs (fetched and converted to base64 before API call)

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: API_KEY
  baseUrl?: string,           // default: https://api.anthropic.com (or 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 → text blocks and (optionally) image blocks with Anthropic base64 image sources
  • 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.


Documentation

CorePackage docs · Error types

AdaptersOpenAI · Anthropic · Ollama

Anthropichello · control-flow · stream · vision · weather

Ollamahello · stream · vision · weather · web-search

OpenAIhello · weather · stream · vision · reasoning · react · control-flow · branch · parallel · graph · orchestration · orchestration-adaptive · guardrails · error-handling · rag-chroma · web-search · web-fetch · wikipedia · terminal · github-projects · server · aws-s3 · azure-blob


Contributing

We build Sisu in the open. Contributions welcome.

Contributing Guide · Report a Bug · Request a Feature · Code of Conduct


Star on GitHub if Sisu helps you build better agents.

Quiet, determined, relentlessly useful.

Apache 2.0 License