https://github.com/code-rhapsodie/connector-mistral
https://github.com/code-rhapsodie/connector-mistral
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/code-rhapsodie/connector-mistral
- Owner: code-rhapsodie
- License: mit
- Created: 2025-09-29T14:17:10.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2025-09-30T06:39:30.000Z (9 months ago)
- Last Synced: 2025-09-30T08:35:20.353Z (9 months ago)
- Language: PHP
- Size: 29.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Code Rhapsodie Connector Mistral Bundle
The code-rhapsodie/connector-mistral bundle integrates Mistral into Ibexa DXP, enabling AI-assisted content generation and editing capabilities directly from the Ibexa Back Office.
> **NOTE** This Mistral AI connector is experimental and may not be suitable for production use.
> Use at your own risk.
## Installation
### Step 1: Install the bundle via composer
```bash
composer require code-rhapsodie/connector-mistral
```
### Step 2: Enable the bundle
````php
// config/bundles.php
return [
// ...
CodeRhapsodie\Bundle\ConnectorMistral\CRConnectorMistralBundle::class => ['all' => true],
];
````
### Step 3: Configure your api key
```dotenv
#.env
MISTRAL_API_KEY=your-mistral-api-key-here
```
### Step 4: Import generic IA Action migration
```bash
php bin/console ibexa:migrations:import vendor/code-rhapsodie/connector-mistral/src/bundle/Resources/migrations/mistral_action_configurations.yaml
```
### Step 5: Execute Ibexa migration
```bash
php bin/console ibexa:migrations:migrate
```