assist-feedback.php
11 months ago
assistant.php
11 months ago
base.php
11 months ago
dropped-file.php
11 months ago
edit-image.php
11 months ago
embed.php
11 months ago
feedback.php
11 months ago
function.php
11 months ago
image.php
11 months ago
parameter.php
11 months ago
text.php
11 months ago
transcribe.php
11 months ago
text.php
139 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 | |
| 7 | // Parameters |
| 8 | public ?float $temperature = null; |
| 9 | public ?int $maxTokens = null; |
| 10 | public ?string $stop = null; |
| 11 | public ?string $responseFormat = null; |
| 12 | |
| 13 | #region Constructors, Serialization |
| 14 | |
| 15 | public function __construct( ?string $message = '', ?int $maxTokens = null, string $model = null ) { |
| 16 | parent::__construct( $message ); |
| 17 | if ( !empty( $model ) ) { |
| 18 | $this->set_model( $model ); |
| 19 | } |
| 20 | if ( !empty( $maxTokens ) ) { |
| 21 | $this->set_max_tokens( $maxTokens ); |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | #[\ReturnTypeWillChange] |
| 26 | public function jsonSerialize(): array { |
| 27 | $json = [ |
| 28 | 'message' => $this->message, |
| 29 | 'instructions' => $this->instructions, |
| 30 | |
| 31 | 'ai' => [ |
| 32 | 'model' => $this->model, |
| 33 | 'feature' => $this->feature, |
| 34 | 'maxTokens' => $this->maxTokens, |
| 35 | 'temperature' => $this->temperature, |
| 36 | ], |
| 37 | |
| 38 | 'system' => [ |
| 39 | 'class' => get_class( $this ), |
| 40 | 'envId' => $this->envId, |
| 41 | 'scope' => $this->scope, |
| 42 | 'session' => $this->session, |
| 43 | 'maxMessages' => $this->maxMessages, |
| 44 | ] |
| 45 | ]; |
| 46 | |
| 47 | if ( !empty( $this->context ) ) { |
| 48 | $json['context']['content'] = $this->context; |
| 49 | } |
| 50 | |
| 51 | if ( !empty( $this->attachedFile ) ) { |
| 52 | $json['context']['hasFile'] = true; |
| 53 | if ( $this->attachedFile->get_type() === 'url' ) { |
| 54 | $json['context']['fileUrl'] = $this->attachedFile->get_url(); |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | return $json; |
| 59 | } |
| 60 | |
| 61 | #endregion |
| 62 | |
| 63 | #region File Handling |
| 64 | |
| 65 | public function set_file( Meow_MWAI_Query_DroppedFile $file ): void { |
| 66 | $this->attachedFile = $file; |
| 67 | } |
| 68 | |
| 69 | #endregion |
| 70 | |
| 71 | #region Parameters |
| 72 | |
| 73 | /** |
| 74 | * The type of return expected from the API. It can be either null or "json". |
| 75 | * @param int $maxResults The maximum number of completions. |
| 76 | */ |
| 77 | public function set_response_format( $responseFormat ) { |
| 78 | if ( !empty( $responseFormat ) && $responseFormat !== 'json' ) { |
| 79 | throw new Exception( 'AI Engine: The response format can only be null or json.' ); |
| 80 | } |
| 81 | $this->responseFormat = $responseFormat; |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * The maximum number of tokens to generate in the completion. |
| 86 | * The token count of your prompt plus max_tokens cannot exceed the model's context length. |
| 87 | * Most models have a context length of 2048 tokens (except for the newest models, which support 4096). |
| 88 | * @param float $maxTokens The maximum number of tokens. |
| 89 | */ |
| 90 | public function set_max_tokens( int $maxTokens ): void { |
| 91 | $this->maxTokens = $maxTokens; |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Set the sampling temperature to use. Higher values means the model will take more risks. |
| 96 | * Try 0.9 for more creative applications, and 0 for ones with a well-defined reply. |
| 97 | * @param float $temperature The temperature. |
| 98 | */ |
| 99 | public function set_temperature( float $temperature ): void { |
| 100 | $temperature = floatval( $temperature ); |
| 101 | if ( $temperature > 1 ) { |
| 102 | $temperature = 1; |
| 103 | } |
| 104 | if ( $temperature < 0 ) { |
| 105 | $temperature = 0; |
| 106 | } |
| 107 | $this->temperature = round( $temperature, 2 ); |
| 108 | } |
| 109 | |
| 110 | public function set_stop( string $stop ): void { |
| 111 | $this->stop = $stop; |
| 112 | } |
| 113 | |
| 114 | #endregion |
| 115 | |
| 116 | #region Inject Params |
| 117 | |
| 118 | // Based on the params of the query, update the attributes |
| 119 | public function inject_params( array $params ): void { |
| 120 | parent::inject_params( $params ); |
| 121 | $params = $this->convert_keys( $params ); |
| 122 | |
| 123 | if ( !empty( $params['maxTokens'] ) && intval( $params['maxTokens'] ) > 0 ) { |
| 124 | $this->set_max_tokens( intval( $params['maxTokens'] ) ); |
| 125 | } |
| 126 | if ( isset( $params['temperature'] ) && $params['temperature'] !== '' ) { |
| 127 | $this->set_temperature( $params['temperature'] ); |
| 128 | } |
| 129 | if ( !empty( $params['stop'] ) ) { |
| 130 | $this->set_stop( $params['stop'] ); |
| 131 | } |
| 132 | if ( !empty( $params['responseFormat'] ) ) { |
| 133 | $this->set_response_format( $params['responseFormat'] ); |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | #endregion |
| 138 | } |
| 139 |