From 1b72400ac86ca9d6e164fe71718e6a2673247647 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20D=C4=85browski?= <64841871+dabrt@users.noreply.github.com> Date: Fri, 8 May 2026 13:33:14 +0200 Subject: [PATCH 1/2] Update Anthropic instructions --- docs/ai_actions/configure_ai_actions.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/docs/ai_actions/configure_ai_actions.md b/docs/ai_actions/configure_ai_actions.md index 1611b11286..82742e4726 100644 --- a/docs/ai_actions/configure_ai_actions.md +++ b/docs/ai_actions/configure_ai_actions.md @@ -72,15 +72,22 @@ To do it, in `config/packages` folder, create a YAML file similar to this exampl ```yaml ibexa_connector_anthropic: text_to_text: - default_model: claude-opus-4-20250514 + default_model: claude-sonnet-4-6 default_temperature: 0.8 default_max_tokens: 2045 models: - claude-sonnet-4-20250514: 'Claude 4 Sonnet (2025-05-14)' - claude-opus-4-20250514: 'Claude Opus 4 (2025-05-14)' + claude-haiku-4-5-20251001: 'Claude Haiku 4.5 (fast, cost-efficient)' + claude-sonnet-4-6: 'Claude Sonnet 4.6 (recommended)' + claude-opus-4-6: 'Claude Opus 4.6 (advanced reasoning)' + claude-opus-4-7: 'Claude Opus 4.7 (most capable)' ``` You can now use the Anthropic connector in your project. +!!! note "Current model availability" + + Anthropic regularly releases new models and deprecates older ones. + 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. + ## Install Google Gemini connector [[% include 'snippets/lts-update_badge.md' %]] Run the following command to install the package: From f8e9183eaee3f086b5cc41ef3c5276e5f9036523 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20D=C4=85browski?= <64841871+dabrt@users.noreply.github.com> Date: Fri, 8 May 2026 14:54:27 +0200 Subject: [PATCH 2/2] Add a line about bundles.php --- docs/ai_actions/configure_ai_actions.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/ai_actions/configure_ai_actions.md b/docs/ai_actions/configure_ai_actions.md index 82742e4726..e9d1ab0b4c 100644 --- a/docs/ai_actions/configure_ai_actions.md +++ b/docs/ai_actions/configure_ai_actions.md @@ -44,7 +44,13 @@ Run the following command to install the package: composer require ibexa/connector-anthropic ``` -This command adds the feature code, including basic handlers that let you refine text or generate alternative text for images. +If not using Symfony Flex, enable the bundle in `config/bundles.php`: + +``` php + Ibexa\Bundle\ConnectorAnthropic\IbexaConnectorAnthropicBundle::class => [‘all’ => true], +``` + +This adds the feature code, including basic handlers that let you refine text or generate alternative text for images. 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. @@ -102,7 +108,7 @@ Then, if not using Symfony Flex, enable the bundle in `config/bundles.php`: Ibexa\Bundle\ConnectorGemini\IbexaConnectorGeminiBundle::class => ['all' => true], ``` -This command adds the feature code, including basic handlers that let you refine text or generate alternative text for images. +This adds the feature code, including basic handlers that let you refine text or generate alternative text for images. ### Get API key