LLM access to Claude 3 by Anthropic
Install this plugin in the same environment as LLM.
llm install llm-claude-3First, set an API key for Claude 3:
llm keys set claude
# Paste key hereYou can also set the key in the environment variable ANTHROPIC_API_KEY
Run llm models to list the models, and llm models --options to include a list of their options.
Run prompts like this:
llm -m claude-3.5-sonnet 'Fun facts about pelicans'
llm -m claude-3.5-haiku 'Fun facts about armadillos'
llm -m claude-3-opus 'Fun facts about squirrels'Images are supported too:
llm -m claude-3.5-sonnet 'describe this image' -a https://static.simonwillison.net/static/2024/pelicans.jpg
llm -m claude-3-haiku 'extract text' -a page.pngTo set up this plugin locally, first checkout the code. Then create a new virtual environment:
cd llm-claude-3
python3 -m venv venv
source venv/bin/activateNow install the dependencies and test dependencies:
llm install -e '.[test]'To run the tests:
pytestThis project uses pytest-recording to record Anthropic API responses for the tests.
If you add a new test that calls the API you can capture the API response like this:
PYTEST_ANTHROPIC_API_KEY="$(llm keys get claude)" pytest --record-mode onceYou will need to have stored a valid Anthropic API key using this command first:
llm keys set claude
# Paste key here