░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/moodle/public/ai/provider/deepseek/classes/aimodel
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: deepseek_chat.php
<?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_deepseek\aimodel; use core_ai\aimodel\base; use MoodleQuickForm; /** * DeepSeek chat AI model. * * @package aiprovider_deepseek * @copyright 2025 Matt Porritt <matt.porritt@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class deepseek_chat extends base implements deepseek_base { #[\Override] public function get_model_name(): string { return 'deepseek-chat'; } #[\Override] public function get_model_display_name(): string { return 'deepseek-chat'; } #[\Override] public function get_model_settings(): array { return [ 'temperature' => [ 'elementtype' => 'text', 'label' => [ 'identifier' => 'settings_temperature', 'component' => 'aiprovider_deepseek', ], 'type' => PARAM_FLOAT, 'help' => [ 'identifier' => 'settings_temperature', 'component' => 'aiprovider_deepseek', ], ], 'logprobs' => [ 'elementtype' => 'checkbox', 'label' => [ 'identifier' => 'settings_logprobs', 'component' => 'aiprovider_deepseek', ], 'type' => PARAM_BOOL, 'help' => [ 'identifier' => 'settings_logprobs', 'component' => 'aiprovider_deepseek', ], ], 'top_logprobs' => [ 'elementtype' => 'text', 'label' => [ 'identifier' => 'settings_top_logprobs', 'component' => 'aiprovider_deepseek', ], 'type' => PARAM_FLOAT, 'help' => [ 'identifier' => 'settings_top_logprobs', 'component' => 'aiprovider_deepseek', ], ], 'top_p' => [ 'elementtype' => 'text', 'label' => [ 'identifier' => 'settings_top_p', 'component' => 'aiprovider_deepseek', ], 'type' => PARAM_FLOAT, 'help' => [ 'identifier' => 'settings_top_p', 'component' => 'aiprovider_deepseek', ], ], 'max_tokens' => [ 'elementtype' => 'text', 'label' => [ 'identifier' => 'settings_max_tokens', 'component' => 'aiprovider_deepseek', ], 'type' => PARAM_INT, 'help' => [ 'identifier' => 'settings_max_tokens', 'component' => 'aiprovider_deepseek', ], ], 'frequency_penalty' => [ 'elementtype' => 'text', 'label' => [ 'identifier' => 'settings_frequency_penalty', 'component' => 'aiprovider_deepseek', ], 'type' => PARAM_RAW, // This is a raw value because it can be a float from -2.0 to 2.0. 'help' => [ 'identifier' => 'settings_frequency_penalty', 'component' => 'aiprovider_deepseek', ], ], 'presence_penalty' => [ 'elementtype' => 'text', 'label' => [ 'identifier' => 'settings_presence_penalty', 'component' => 'aiprovider_deepseek', ], 'type' => PARAM_RAW, // This is a raw value because it can be a float from -2.0 to 2.0. 'help' => [ 'identifier' => 'settings_presence_penalty', 'component' => 'aiprovider_deepseek', ], ], ]; } #[\Override] public function add_model_settings(MoodleQuickForm $mform): void { $settings = $this->get_model_settings(); foreach ($settings as $key => $setting) { if ($setting['elementtype'] === 'checkbox') { $groupname = $key . '_group'; $mform->addGroup([ $mform->createElement( 'checkbox', $key, get_string($setting['label']['identifier'] . '_label', $setting['label']['component']), '', ['class' => 'pt-1'], ), ], $groupname, get_string($setting['label']['identifier'], $setting['label']['component'])); $mform->setType($key, $setting['type']); if (isset($setting['help'])) { $mform->addHelpButton($groupname, $setting['help']['identifier'], $setting['help']['component']); } } else { $mform->addElement( $setting['elementtype'], $key, get_string($setting['label']['identifier'], $setting['label']['component']), ); $mform->setType($key, $setting['type']); if (isset($setting['help'])) { $mform->addHelpButton($key, $setting['help']['identifier'], $setting['help']['component']); } } } } #[\Override] public function model_type(): int { return self::MODEL_TYPE_TEXT; } }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 deepseek_base.php
PHP
1.2 KB
2026-02-11 01:44
EDIT
📄 deepseek_chat.php
PHP
6.2 KB
2026-02-11 01:44
EDIT
📄 deepseek_reasoner.php
PHP
6.2 KB
2026-02-11 01:44
EDIT