// Package anthropic provides the Anthropic LLM provider. package anthropic import ( llm "gitea.stevedudenhoeffer.com/steve/go-llm" ) // New creates a new Anthropic LLM provider with the given API key. func New(key string) llm.LLM { return llm.Anthropic(key) }