A Spryker Yves module that provides an integration with Symfony AI
Follow these steps to install and configure the module in your Spryker project.
composer require spryker-community/symfony-ai-wrapperRegister the SprykerCommunity namespace in your project's configuration to allow the Spryker kernel to locate the module's classes.
File: config/Shared/config_default.php
<?php
use Spryker\Shared\Kernel\KernelConstants;
// ...
$config[KernelConstants::CORE_NAMESPACES] = [
'Spryker',
'SprykerCommunity', // Add this line
];The module comes with a transfer definition. You must regenerate the transfer classes to make Product3DViewTransfer available throughout the application.
vendor/bin/console transfer:generateThis project is licensed under the MIT License - see the LICENSE file for details.