0Scottzilla0's picture
Upload folder using huggingface_hub
8481fea verified
raw
history blame contribute delete
215 Bytes
import { createAnthropic } from '@ai-sdk/anthropic';
export function getAnthropicModel(apiKey: string) {
const anthropic = createAnthropic({
apiKey,
});
return anthropic('claude-3-5-sonnet-20240620');
}