Note: Claude models currently have rate limits and may require careful configuration for optimal performance.

Setup Guide

1

Set up Claude API key

export CLAUDE_API_KEY=<your Claude API key>
2

Add model configuration

Add the model configuration to your config.yml file:

config.yml
...
models:
- name: claude-3-7-sonnet
  key_var: ANTHROPIC_API_KEY # name of the environment variable containing the API key
  model_ref: claude-3-7-sonnet-20250219 # or model of your choice
  vendor: anthropic
...
3

Update agent's model configuration

Update the agent’s model configuration:

agents/agent.yml
model: claude-3-7-sonnet