Supported Models
Nen uses Anthropic’s Claude family of vision-language models.| Model ID | Description | Best For |
|---|---|---|
claude-opus-4-6 | Most capable | Complex reasoning, multi-step decisions |
claude-sonnet-4-6 | Latest Sonnet | General-purpose, good balance |
claude-sonnet-4-5-20250929 | Balanced | Default model. Reliable for most tasks |
claude-haiku-4-5-20251001 | Fast & cheap | Simple clicks, navigation, quick checks |
Setting the Default Model
Themodel parameter on Agent is optional. If omitted, all calls on that agent default to claude-sonnet-4-6. Passing a model sets the default for every method call on that agent:
model argument. If no model is passed to the method, the agent-level default is used.
Per-Call Overrides
Override the model for a specific call:Choosing a Model
Speed & Cost
Use
claude-haiku-4-5-20251001 for simple clicks, form fills, and navigation where accuracy is straightforward.Accuracy
Use
claude-sonnet-4-6 for data extraction, complex UI reasoning, and multi-step decisions.Rules of Thumb
- Navigation & simple clicks → Haiku
- Data extraction → Sonnet
- Complex multi-step reasoning → Sonnet or Opus
- Default (if unsure) → leave unset (platform default)