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 core_ai\aimodel;
use MoodleQuickForm;
/**
* Base Model class.
*
* @package core_ai
* @copyright 2025 Huong Nguyen <huongnv13@gmail.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
abstract class base {
/**
* Get the display name of the model.
* This name is used to display the model in the UI.
*
* @return string The display name of the model.
*/
abstract public function get_model_display_name(): string;
/**
* Get the name of the model.
* This name is used to identify the model. The system will use this model name to make the request to the AI services.
*
* @return string The name of the model.
*/
abstract public function get_model_name(): string;
/**
* Add the model settings to the form.
*
* @param MoodleQuickForm $mform The form to add the model settings to.
*/
public function add_model_settings(MoodleQuickForm $mform): void {
}
/**
* Check if the model has settings.
*
* @return bool Whether the model has settings.
*/
public function has_model_settings(): bool {
return false;
}
}