AutorÃa | Ultima modificación | Ver Log |
<?php// This file is part of Moodle - http://moodle.org///// Moodle is free software: you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation, either version 3 of the License, or// (at your option) any later version.//// Moodle is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the// GNU General Public License for more details.//// You should have received a copy of the GNU General Public License// along with Moodle. If not, see <http://www.gnu.org/licenses/>.namespace aiprovider_openai;use core_ai\form\action_settings_form;use Psr\Http\Message\RequestInterface;/*** Class provider.** @package aiprovider_openai* @copyright 2024 Matt Porritt <matt.porritt@moodle.com>* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later*/class provider extends \core_ai\provider {/*** Get the list of actions that this provider supports.** @return array An array of action class names.*/public static function get_action_list(): array {return [\core_ai\aiactions\generate_text::class,\core_ai\aiactions\generate_image::class,\core_ai\aiactions\summarise_text::class,\core_ai\aiactions\explain_text::class,];}#[\Override]public function add_authentication_headers(RequestInterface $request): RequestInterface {if (isset($this->config['orgid'])) {return $request->withAddedHeader('Authorization', "Bearer {$this->config['apikey']}")->withAddedHeader('OpenAI-Organization', $this->config['orgid']);} else {return $request->withAddedHeader('Authorization', "Bearer {$this->config['apikey']}");}}#[\Override]public static function get_action_settings(string $action,array $customdata = [],): action_settings_form|bool {$actionname = substr($action, (strrpos($action, '\\') + 1));$customdata['actionname'] = $actionname;$customdata['action'] = $action;if ($actionname === 'generate_text' || $actionname === 'summarise_text' || $actionname === 'explain_text') {return new form\action_generate_text_form(customdata: $customdata);} else if ($actionname === 'generate_image') {return new form\action_generate_image_form(customdata: $customdata);}return false;}#[\Override]public static function get_action_setting_defaults(string $action): array {$actionname = substr($action, (strrpos($action, '\\') + 1));$customdata = ['actionname' => $actionname,'action' => $action,'providername' => 'aiprovider_openai',];if ($actionname === 'generate_text' || $actionname === 'summarise_text' || $actionname === 'explain_text') {$mform = new form\action_generate_text_form(customdata: $customdata);return $mform->get_defaults();} else if ($actionname === 'generate_image') {$mform = new form\action_generate_image_form(customdata: $customdata);return $mform->get_defaults();}return [];}/*** Check this provider has the minimal configuration to work.** @return bool Return true if configured.*/public function is_provider_configured(): bool {return !empty($this->config['apikey']);}}