@markeljan/ai-sdk-anthropic
v1.1.11
Published
The **[Anthropic provider](https://sdk.vercel.ai/providers/ai-sdk-providers/anthropic)** for the [AI SDK](https://sdk.vercel.ai/docs) contains language model support for the [Anthropic Messages API](https://docs.anthropic.com/claude/reference/messages_pos
Downloads
4
Readme
AI SDK - Anthropic Provider
The Anthropic provider for the AI SDK contains language model support for the Anthropic Messages API.
Setup
The Anthropic provider is available in the @ai-sdk/anthropic module. You can install it with
npm i @ai-sdk/anthropicProvider Instance
You can import the default provider instance anthropic from @ai-sdk/anthropic:
import { anthropic } from '@markeljan/ai-sdk-anthropic';Example
import { anthropic } from '@markeljan/ai-sdk-anthropic';
import { generateText } from '@markeljan/ai';
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.
