Added Claude 4.1 to docs

This commit is contained in:
Dillon DuPont
2025-08-06 11:46:18 -04:00
parent 8e249174cd
commit 760faf1b55
2 changed files with 6 additions and 2 deletions

View File

@@ -12,6 +12,8 @@ Use `ComputerAgent.predict_click()` to get coordinates for specific UI elements.
All models that support `ComputerAgent.run()` also support `ComputerAgent.predict_click()`:
### Anthropic CUAs
- Claude 4.1: `claude-opus-4-1-20250805`
- Claude 4: `claude-opus-4-20250514`, `claude-sonnet-4-20250514`
- Claude 3.7: `claude-3-7-sonnet-20250219`
- Claude 3.5: `claude-3-5-sonnet-20240620`

View File

@@ -169,18 +169,20 @@ python -m agent.cli openai/computer-use-preview
<Tab value="uv">
```bash
uv run --with "cua-agent[cli]" -m agent.cli anthropic/claude-3-5-sonnet-20241022
uv run --with "cua-agent[cli]" -m agent.cli anthropic/claude-opus-4-20250514
uv run --with "cua-agent[cli]" -m agent.cli anthropic/claude-opus-4-1-20250805
uv run --with "cua-agent[cli]" -m agent.cli anthropic/claude-sonnet-4-20250514
uv run --with "cua-agent[cli]" -m agent.cli anthropic/claude-3-5-sonnet-20241022
```
</Tab>
<Tab value="conda/pip">
```bash
python -m agent.cli anthropic/claude-3-5-sonnet-20241022
python -m agent.cli anthropic/claude-opus-4-1-20250805
python -m agent.cli anthropic/claude-opus-4-20250514
python -m agent.cli anthropic/claude-sonnet-4-20250514
python -m agent.cli anthropic/claude-3-5-sonnet-20241022
```
</Tab>