135 文件 19,211 处自动修复:空格→Tab 缩进、括号间距、 函数声明空格、前置自增、尾逗号等纯格式化改动。 零逻辑变更,php -l + token 级对比验证通过。 新增 phpcs.xml.dist / phpstan.neon.dist 项目配置。 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
28 lines
482 B
PHP
28 lines
482 B
PHP
<?php
|
|
/**
|
|
* Moonshot 文本生成模型
|
|
*
|
|
* @package WPMind
|
|
* @since 1.3.0
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WPMind\Providers\Moonshot;
|
|
|
|
use WPMind\Providers\AbstractOpenAiCompatibleTextGenerationModel;
|
|
|
|
/**
|
|
* Moonshot 文本生成模型
|
|
*
|
|
* @since 1.3.0
|
|
*/
|
|
class MoonshotTextGenerationModel extends AbstractOpenAiCompatibleTextGenerationModel {
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
protected static function providerClass(): string {
|
|
return MoonshotProvider::class;
|
|
}
|
|
}
|