A third-party provider for Mistral in the PHP AI Client SDK. Works as both a Composer package and a WordPress plugin.
This project is independent and is not affiliated with, endorsed by, or sponsored by Mistral AI.
- PHP 7.4 or higher
- wordpress/php-ai-client must be installed
composer require saarnilauri/ai-provider-for-mistralThe Composer distribution is intended for library usage and excludes ai-provider-for-mistral.php.
- Download
ai-provider-for-mistral.zipfrom GitHub Releases (do not use GitHub "Source code" archives) - Upload the ZIP in WordPress admin via Plugins > Add New Plugin > Upload Plugin
- Ensure the PHP AI Client plugin is installed and activated
- Activate the plugin through the WordPress admin
Use the release ZIP URL from GitHub Releases — not the auto-generated main.zip source archive, which is missing the bundled dependencies:
wp plugin install https://github.com/saarnilauri/ai-provider-for-mistral/releases/download/v1.0.1/ai-provider-for-mistral.zip --activateReplace v1.0.1 with the desired release tag.
Build a distributable plugin archive locally:
make dist
# or:
./scripts/build-plugin-zip.shThe ZIP is created at dist/ai-provider-for-mistral.zip and includes ai-provider-for-mistral.php.
Install development dependencies:
composer installRun unit tests:
composer test
# or:
composer test:unitRun integration tests (requires MISTRAL_API_KEY):
composer test:integrationThis repository includes a GitHub Actions workflow at .github/workflows/release-plugin-zip.yml:
- On tag pushes matching
v*, it buildsdist/ai-provider-for-mistral.zip - For tagged releases, it derives the version from the tag (for example
v0.1.0->0.1.0) and validates committed metadata:readme.txtStable tagmust match the tag versionai-provider-for-mistral.phpVersionmust match the tag version
- If versions do not match, the workflow fails
- It uploads the ZIP as a workflow artifact
- It attaches the ZIP to the GitHub release for that tag
The provider automatically registers itself with the PHP AI Client on the init hook. Simply ensure both plugins are active and configure your API key:
// Set your Mistral API key (or use the MISTRAL_API_KEY environment variable)
putenv('MISTRAL_API_KEY=your-api-key');
// Use the provider
$result = AiClient::prompt('Hello, world!')
->usingProvider('mistral')
->generateTextResult();use WordPress\AiClient\AiClient;
use SaarniLauri\AiProviderForMistral\Provider\ProviderForMistral;
// Register the provider
$registry = AiClient::defaultRegistry();
$registry->registerProvider(ProviderForMistral::class);
// Set your API key
putenv('MISTRAL_API_KEY=your-api-key');
// Generate text
$result = AiClient::prompt('Explain quantum computing')
->usingProvider('mistral')
->generateTextResult();
echo $result->toText();Mistral supports image generation through its Agents API. The provider handles the multi-step flow (agent creation, conversation, file download) automatically:
$result = AiClient::prompt('A red apple on a white background')
->usingProvider('mistral')
->generateImageResult();
// Get the generated image as base64-encoded PNG
$file = $result->getCandidates()[0]->getMessage()->getParts()[0]->getFile();
$binaryData = base64_decode($file->getBase64Data(), true);
file_put_contents('apple.png', $binaryData);Available models are dynamically discovered from the Mistral API. This includes text models and, for compatible models, vision and function-calling capabilities. Image generation is supported through models like mistral-medium-2505. See the Mistral documentation for the full list of available models.
The provider uses the MISTRAL_API_KEY environment variable for authentication. You can set this in your environment or via PHP:
putenv('MISTRAL_API_KEY=your-api-key');This plugin connects to the Mistral AI API to provide AI text generation and image generation capabilities.
Data is sent to the Mistral API when your application code makes AI generation requests through the PHP AI Client. The data sent includes your prompts, model configuration, and API key. No data is sent automatically — requests only occur when explicitly triggered by code using the PHP AI Client SDK.
This service is provided by Mistral AI:
GPL-2.0-or-later