1.1.15 • Published 7 months ago

@ai-toolkit/anthropic v1.1.15

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
7 months ago

AI TOOLKIT - Anthropic Provider

The Anthropic provider for the AI TOOLKIT contains language model support for the Anthropic Messages API.

Setup

The Anthropic provider is available in the @ai-toolkit/anthropic module. You can install it with

npm i @ai-toolkit/anthropic

Provider Instance

You can import the default provider instance anthropic from @ai-toolkit/anthropic:

import { anthropic } from '@ai-toolkit/anthropic';

Example

import { anthropic } from '@ai-toolkit/anthropic';
import { generateText } from 'ai-toolkit';

const { text } = await generateText({
  model: anthropic('claude-3-haiku-20240307'),
  prompt: 'Write a vegetarian lasagna recipe for 4 people.',
});

Documentation

Please check out the Anthropic provider documentation for more information.