![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/mageworx/module-seo-ai/Api/ |
<?php /** * Copyright © MageWorx. All rights reserved. * See LICENSE.txt for license details. */ declare(strict_types = 1); namespace MageWorx\SeoAI\Api; interface GeneratorInterface { /** * Generate something using OpenAI API * * @param int $entityId * @param int $storeId * @param string $modelType * @param array $selectedAttributes * @param float $temperature * @param int $variants * @return string */ public function execute( int $entityId, int $storeId, string $modelType, array $selectedAttributes, float $temperature, int $variants ): string; /** * @param int $entityId * @param string $modelType * @param float $temperature * @param int $variants * @param string $content * @param array $context * @return string * @throws \Magento\Framework\Exception\LocalizedException */ public function executeWithPregeneratedRequest( int $entityId, string $modelType, float $temperature, int $variants, string $content, array $context ): string; }