assist-feedback.php
10 months ago
assistant.php
8 months ago
base.php
8 months ago
dropped-file.php
7 months ago
edit-image.php
8 months ago
embed.php
10 months ago
feedback.php
10 months ago
function.php
8 months ago
image.php
8 months ago
parameter.php
11 months ago
text.php
7 months ago
transcribe.php
8 months ago
text.php
227 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_Query_Text extends Meow_MWAI_Query_Base implements JsonSerializable { |
| 4 | // Core Content |
| 5 | public ?Meow_MWAI_Query_DroppedFile $attachedFile = null; |
| 6 | public ?array $attachedFiles = null; // Multiple files support |
| 7 | |
| 8 | // Parameters |
| 9 | public ?float $temperature = null; |
| 10 | public ?int $maxTokens = null; |
| 11 | public ?string $stop = null; |
| 12 | public ?string $responseFormat = null; |
| 13 | public ?string $reasoning = null; // GPT-5 reasoning effort |
| 14 | public ?string $verbosity = null; // GPT-5 verbosity level |
| 15 | |
| 16 | #region Constructors, Serialization |
| 17 | |
| 18 | public function __construct( ?string $message = '', ?int $maxTokens = null, ?string $model = null ) { |
| 19 | parent::__construct( $message ); |
| 20 | if ( !empty( $model ) ) { |
| 21 | $this->set_model( $model ); |
| 22 | } |
| 23 | if ( !empty( $maxTokens ) ) { |
| 24 | $this->set_max_tokens( $maxTokens ); |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | #[\ReturnTypeWillChange] |
| 29 | public function jsonSerialize(): array { |
| 30 | $json = [ |
| 31 | 'message' => $this->message, |
| 32 | 'instructions' => $this->instructions, |
| 33 | |
| 34 | 'ai' => [ |
| 35 | 'model' => $this->model, |
| 36 | 'feature' => $this->feature, |
| 37 | 'maxTokens' => $this->maxTokens, |
| 38 | 'temperature' => $this->temperature, |
| 39 | ], |
| 40 | |
| 41 | 'system' => [ |
| 42 | 'class' => get_class( $this ), |
| 43 | 'envId' => $this->envId, |
| 44 | 'scope' => $this->scope, |
| 45 | 'session' => $this->session, |
| 46 | 'customId' => $this->customId, |
| 47 | 'maxMessages' => $this->maxMessages, |
| 48 | ] |
| 49 | ]; |
| 50 | |
| 51 | if ( !empty( $this->context ) ) { |
| 52 | $json['context']['content'] = $this->context; |
| 53 | } |
| 54 | |
| 55 | if ( !empty( $this->attachedFile ) ) { |
| 56 | $json['context']['hasFile'] = true; |
| 57 | if ( $this->attachedFile->get_type() === 'url' ) { |
| 58 | $json['context']['fileUrl'] = $this->attachedFile->get_url(); |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | if ( !empty( $this->attachedFiles ) ) { |
| 63 | $json['context']['hasFiles'] = true; |
| 64 | $json['context']['fileCount'] = count( $this->attachedFiles ); |
| 65 | } |
| 66 | |
| 67 | return $json; |
| 68 | } |
| 69 | |
| 70 | #endregion |
| 71 | |
| 72 | #region File Handling |
| 73 | |
| 74 | /** |
| 75 | * Get all attached files as a normalized array. |
| 76 | * This method provides backward compatibility by merging both attachedFile (legacy) |
| 77 | * and attachedFiles (current) into a single array. |
| 78 | * |
| 79 | * @return Meow_MWAI_Query_DroppedFile[] Array of attached files |
| 80 | */ |
| 81 | public function getAttachments(): array { |
| 82 | $files = $this->attachedFiles ?? []; |
| 83 | |
| 84 | // Backward compatibility: include legacy attachedFile if it exists and isn't already in the array |
| 85 | if ( $this->attachedFile && !in_array( $this->attachedFile, $files, true ) ) { |
| 86 | // Prepend the single file so it appears first (maintains legacy behavior) |
| 87 | array_unshift( $files, $this->attachedFile ); |
| 88 | } |
| 89 | |
| 90 | return $files; |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Add a file to the attachedFiles array. |
| 95 | * This is the unified method for both single and multi-file uploads. |
| 96 | */ |
| 97 | public function add_file( Meow_MWAI_Query_DroppedFile $file ): void { |
| 98 | if ( $this->attachedFiles === null ) { |
| 99 | $this->attachedFiles = []; |
| 100 | } |
| 101 | $this->attachedFiles[] = $file; |
| 102 | } |
| 103 | |
| 104 | public function set_files( array $files ): void { |
| 105 | $this->attachedFiles = $files; |
| 106 | } |
| 107 | |
| 108 | public function get_files(): ?array { |
| 109 | return $this->attachedFiles; |
| 110 | } |
| 111 | |
| 112 | #endregion |
| 113 | |
| 114 | #region Parameters |
| 115 | |
| 116 | /** |
| 117 | * The type of return expected from the API. It can be either null or "json". |
| 118 | * @param int $maxResults The maximum number of completions. |
| 119 | */ |
| 120 | public function set_response_format( $responseFormat ) { |
| 121 | if ( !empty( $responseFormat ) && $responseFormat !== 'json' ) { |
| 122 | throw new Exception( 'AI Engine: The response format can only be null or json.' ); |
| 123 | } |
| 124 | $this->responseFormat = $responseFormat; |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * The maximum number of tokens to generate in the completion. |
| 129 | * The token count of your prompt plus max_tokens cannot exceed the model's context length. |
| 130 | * Most models have a context length of 2048 tokens (except for the newest models, which support 4096). |
| 131 | * @param float $maxTokens The maximum number of tokens. |
| 132 | */ |
| 133 | public function set_max_tokens( int $maxTokens ): void { |
| 134 | $this->maxTokens = $maxTokens; |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * Set the sampling temperature to use. Higher values means the model will take more risks. |
| 139 | * Try 0.9 for more creative applications, and 0 for ones with a well-defined reply. |
| 140 | * @param float $temperature The temperature. |
| 141 | */ |
| 142 | public function set_temperature( float $temperature ): void { |
| 143 | $temperature = floatval( $temperature ); |
| 144 | if ( $temperature > 1 ) { |
| 145 | $temperature = 1; |
| 146 | } |
| 147 | if ( $temperature < 0 ) { |
| 148 | $temperature = 0; |
| 149 | } |
| 150 | $this->temperature = round( $temperature, 2 ); |
| 151 | } |
| 152 | |
| 153 | public function set_stop( string $stop ): void { |
| 154 | $this->stop = $stop; |
| 155 | } |
| 156 | |
| 157 | /** |
| 158 | * Set the reasoning effort for GPT-5 models. |
| 159 | * @param string $reasoning The reasoning effort level (none, minimal, low, medium, high). |
| 160 | */ |
| 161 | public function set_reasoning( string $reasoning ): void { |
| 162 | $valid = ['none', 'minimal', 'low', 'medium', 'high']; |
| 163 | if ( !in_array( $reasoning, $valid ) ) { |
| 164 | throw new Exception( 'AI Engine: Invalid reasoning level. Must be one of: none, minimal, low, medium, high.' ); |
| 165 | } |
| 166 | $this->reasoning = $reasoning; |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Set the verbosity level for GPT-5 models. |
| 171 | * @param string $verbosity The verbosity level (low, medium, high). |
| 172 | */ |
| 173 | public function set_verbosity( string $verbosity ): void { |
| 174 | $valid = ['low', 'medium', 'high']; |
| 175 | if ( !in_array( $verbosity, $valid ) ) { |
| 176 | throw new Exception( 'AI Engine: Invalid verbosity level. Must be one of: low, medium, high.' ); |
| 177 | } |
| 178 | $this->verbosity = $verbosity; |
| 179 | } |
| 180 | |
| 181 | #endregion |
| 182 | |
| 183 | #region Inject Params |
| 184 | |
| 185 | // Based on the params of the query, update the attributes |
| 186 | public function inject_params( array $params ): void { |
| 187 | parent::inject_params( $params ); |
| 188 | $params = $this->convert_keys( $params ); |
| 189 | |
| 190 | if ( !empty( $params['maxTokens'] ) && intval( $params['maxTokens'] ) > 0 ) { |
| 191 | $this->set_max_tokens( intval( $params['maxTokens'] ) ); |
| 192 | } |
| 193 | if ( isset( $params['temperature'] ) && $params['temperature'] !== '' ) { |
| 194 | $this->set_temperature( $params['temperature'] ); |
| 195 | } |
| 196 | if ( !empty( $params['stop'] ) ) { |
| 197 | $this->set_stop( $params['stop'] ); |
| 198 | } |
| 199 | if ( !empty( $params['responseFormat'] ) ) { |
| 200 | $this->set_response_format( $params['responseFormat'] ); |
| 201 | } |
| 202 | // Accept both 'reasoning' and 'reasoningEffort' (UI uses reasoningEffort) |
| 203 | if ( !empty( $params['reasoning'] ) ) { |
| 204 | $this->set_reasoning( $params['reasoning'] ); |
| 205 | } |
| 206 | if ( !empty( $params['reasoningEffort'] ) ) { |
| 207 | $this->set_reasoning( $params['reasoningEffort'] ); |
| 208 | } |
| 209 | if ( !empty( $params['verbosity'] ) ) { |
| 210 | $this->set_verbosity( $params['verbosity'] ); |
| 211 | } |
| 212 | // Store prompt-related params as extra params |
| 213 | if ( !empty( $params['promptId'] ) ) { |
| 214 | $this->setExtraParam( 'promptId', $params['promptId'] ); |
| 215 | } |
| 216 | // TODO: Prompt Variables support - might be added later |
| 217 | // if ( !empty( $params['promptVariables'] ) ) { |
| 218 | // $this->setExtraParam( 'promptVariables', $params['promptVariables'] ); |
| 219 | // } |
| 220 | // if ( !empty( $params['promptVersion'] ) ) { |
| 221 | // $this->setExtraParam( 'promptVersion', $params['promptVersion'] ); |
| 222 | // } |
| 223 | } |
| 224 | |
| 225 | #endregion |
| 226 | } |
| 227 |