WordPress\AiClient\Providers\Models\DTO

ModelConfig::setSystemInstructionpublicWP 0.1.0

Sets the system instruction.

Method of the class: ModelConfig{}

No Hooks.

Returns

null. Nothing (null).

Usage

$ModelConfig = new ModelConfig();
$ModelConfig->setSystemInstruction( $systemInstruction ): void;
$systemInstruction(string) (required)
The system instruction.

Changelog

Since 0.1.0 Introduced.

ModelConfig::setSystemInstruction() code WP 7.0

public function setSystemInstruction(string $systemInstruction): void
{
    $this->systemInstruction = $systemInstruction;
}