The Anthropic provider for the AI SDK contains language model support for the Anthropic Messages API.
The Anthropic provider is available in the @vishalai/anthropic
module. You can install it with
npm i @vishalai/anthropic
You can import the default provider instance anthropic
from @vishalai/anthropic
:
import { anthropic } from '@vishalai/anthropic';
import { anthropic } from '@vishalai/anthropic';
import { generateText } from 'ai';
const { text } = await generateText({
model: anthropic('claude-3-haiku-20240307'),
prompt: 'Write a vegetarian lasagna recipe for 4 people.',
});
Please check out the Anthropic provider documentation for more information.