Skip to content

Commit cfe26cf

Browse files
dabrtjuskora
andauthored
Update Anthropic instructions (#3192)
* Update Anthropic instructions Co-authored-by: Justyna Koralewicz <79849375+juskora@users.noreply.github.com>
1 parent 1ca4c68 commit cfe26cf

1 file changed

Lines changed: 18 additions & 5 deletions

File tree

docs/ai_actions/configure_ai_actions.md

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,13 @@ Run the following command to install the package:
4444
composer require ibexa/connector-anthropic
4545
```
4646

47-
This command adds the feature code, including basic handlers that let you refine text or generate alternative text for images.
47+
If not using Symfony Flex, enable the bundle in `config/bundles.php`:
48+
49+
``` php
50+
Ibexa\Bundle\ConnectorAnthropic\IbexaConnectorAnthropicBundle::class => ['all' => true],
51+
```
52+
53+
This adds the feature code, including basic handlers that let you refine text or generate alternative text for images.
4854

4955
To use the connector with the Anthropic services, you need to create an account, make sure that you [set up a billing method](https://support.claude.com/en/articles/8325618-paid-plan-billing-faqs), and get an API key.
5056

@@ -72,15 +78,22 @@ To do it, in `config/packages` folder, create a YAML file similar to this exampl
7278
```yaml
7379
ibexa_connector_anthropic:
7480
text_to_text:
75-
default_model: claude-opus-4-20250514
81+
default_model: claude-sonnet-4-6
7682
default_temperature: 0.8
7783
default_max_tokens: 2045
7884
models:
79-
claude-sonnet-4-20250514: 'Claude 4 Sonnet (2025-05-14)'
80-
claude-opus-4-20250514: 'Claude Opus 4 (2025-05-14)'
85+
claude-haiku-4-5-20251001: 'Claude Haiku 4.5 (fast, cost-efficient)'
86+
claude-sonnet-4-6: 'Claude Sonnet 4.6 (recommended)'
87+
claude-opus-4-6: 'Claude Opus 4.6 (advanced reasoning)'
88+
claude-opus-4-7: 'Claude Opus 4.7 (most capable)'
8189
```
8290
You can now use the Anthropic connector in your project.
8391
92+
!!! note "Current model availability"
93+
94+
Anthropic regularly releases new models and deprecates older ones.
95+
Before you configure the connector, check the [Anthropic models overview](https://docs.anthropic.com/en/docs/about-claude/models/overview) for the current list of supported model identifiers.
96+
8497
## Install Google Gemini connector [[% include 'snippets/lts-update_badge.md' %]]
8598
8699
Run the following command to install the package:
@@ -95,7 +108,7 @@ Then, if not using Symfony Flex, enable the bundle in `config/bundles.php`:
95108
Ibexa\Bundle\ConnectorGemini\IbexaConnectorGeminiBundle::class => ['all' => true],
96109
```
97110

98-
This command adds the feature code, including basic handlers that let you refine text or generate alternative text for images.
111+
This adds the feature code, including basic handlers that let you refine text or generate alternative text for images.
99112

100113
### Get API key
101114

0 commit comments

Comments
 (0)