Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 18 additions & 5 deletions docs/ai_actions/configure_ai_actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,13 @@
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`:

Check notice on line 47 in docs/ai_actions/configure_ai_actions.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/ai_actions/configure_ai_actions.md#L47

[Ibexa.ByUsing] Prefer 'by using' or 'with' to plain 'using'.
Raw output
{"message": "[Ibexa.ByUsing] Prefer 'by using' or 'with' to plain 'using'.", "location": {"path": "docs/ai_actions/configure_ai_actions.md", "range": {"start": {"line": 47, "column": 4}}}, "severity": "INFO"}

``` php
Ibexa\Bundle\ConnectorAnthropic\IbexaConnectorAnthropicBundle::class => [‘all’ => true],
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Ibexa\Bundle\ConnectorAnthropic\IbexaConnectorAnthropicBundle::class => [all => true],
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.

Expand Down Expand Up @@ -72,15 +78,22 @@
```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:
Expand All @@ -95,7 +108,7 @@
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

Expand Down
Loading