modules
3 years ago
admin.php
3 years ago
ai.php
3 years ago
answer.php
3 years ago
api.php
3 years ago
core.php
3 years ago
init.php
3 years ago
openai.php
3 years ago
query.php
3 years ago
queryembed.php
3 years ago
queryimage.php
3 years ago
querytext.php
3 years ago
querytranscribe.php
3 years ago
rest.php
3 years ago
security.php
3 years ago
ui.php
3 years ago
querytext.php
243 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_QueryText extends Meow_MWAI_Query { |
| 4 | public $maxTokens = 1024; |
| 5 | public $temperature = 0.8; |
| 6 | public $stop = null; |
| 7 | public $messages = []; |
| 8 | public $context = null; |
| 9 | |
| 10 | public function __construct( $prompt = '', $maxTokens = 1024, $model = 'gpt-3.5-turbo' ) { |
| 11 | parent::__construct( $prompt ); |
| 12 | $this->setModel( $model ); |
| 13 | $this->setMaxTokens( $maxTokens ); |
| 14 | } |
| 15 | |
| 16 | public function getLastPrompt() { |
| 17 | if ( empty( $this->messages ) ) { |
| 18 | return $this->prompt; |
| 19 | } |
| 20 | $lastMessage = end( $this->messages ); |
| 21 | return $lastMessage['content']; |
| 22 | } |
| 23 | |
| 24 | // Quick and dirty token estimation |
| 25 | // Let's keep this synchronized with Helpers in JS |
| 26 | function estimateTokens( $content ) |
| 27 | { |
| 28 | $text = ""; |
| 29 | // https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb |
| 30 | if ( is_array( $content ) ) { |
| 31 | foreach ( $content as $message ) { |
| 32 | $name = ""; |
| 33 | $role = $message['role']; |
| 34 | $content = $message['content']; |
| 35 | $text .= "=#=$role\n$content=#=\n"; |
| 36 | } |
| 37 | } |
| 38 | else { |
| 39 | $text = $content; |
| 40 | } |
| 41 | $tokens = 0; |
| 42 | return apply_filters( 'mwai_estimate_tokens', (int)$tokens, $text, $this->model ); |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Make sure the maxTokens is not greater than the model's context length. |
| 47 | */ |
| 48 | public function checkFix() { |
| 49 | if ( empty( $this->model ) ) { return; } |
| 50 | $realMax = 4096; |
| 51 | $finetuneFamily = preg_match('/^([a-zA-Z]{0,32}):/', $this->model, $matches ); |
| 52 | $finetuneFamily = ( isset( $matches ) && count( $matches ) > 0 ) ? $matches[1] : 'N/A'; |
| 53 | $foundModel = null; |
| 54 | foreach ( MWAI_OPENAI_MODELS as $currentModel ) { |
| 55 | if ( $currentModel['model'] === $this->model || $currentModel['family'] === $finetuneFamily ) { |
| 56 | $foundModel = $currentModel['name']; |
| 57 | $realMax = $currentModel['maxTokens']; |
| 58 | break; |
| 59 | } |
| 60 | } |
| 61 | $estimatedTokens = $this->estimateTokens( $this->messages ); |
| 62 | if ( $estimatedTokens > $realMax ) { |
| 63 | throw new Exception( "The prompt is too long! It contains about $estimatedTokens tokens (estimation). The model $foundModel only accepts a maximum of $realMax tokens. " ); |
| 64 | } |
| 65 | $realMax = (int)($realMax - $estimatedTokens) - 16; |
| 66 | if ( $this->maxTokens > $realMax ) { |
| 67 | $this->maxTokens = $realMax; |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * ID of the model to use. |
| 73 | * @param string $model ID of the model to use. |
| 74 | */ |
| 75 | public function setModel( $model ) { |
| 76 | $this->model = $model; |
| 77 | $this->mode = 'completion'; |
| 78 | foreach ( MWAI_OPENAI_MODELS as $currentModel ) { |
| 79 | if ( $currentModel['model'] === $this->model ) { |
| 80 | if ( $currentModel['mode'] ) { |
| 81 | $this->mode = $currentModel['mode']; |
| 82 | } |
| 83 | break; |
| 84 | } |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Given a prompt, the model will return one or more predicted completions. |
| 90 | * It can also return the probabilities of alternative tokens at each position. |
| 91 | * @param string $prompt The prompt to generate completions. |
| 92 | */ |
| 93 | public function setPrompt( $prompt ) { |
| 94 | parent::setPrompt( $prompt ); |
| 95 | $this->validateMessages(); |
| 96 | } |
| 97 | |
| 98 | public function replace( $search, $replace ) { |
| 99 | $this->prompt = str_replace( $search, $replace, $this->prompt ); |
| 100 | $this->validateMessages(); |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Similar to the prompt, but use an array of messages instead. |
| 105 | * @param string $prompt The messages to generate completions. |
| 106 | */ |
| 107 | public function setMessages( $messages ) { |
| 108 | $messages = array_map( function( $message ) { |
| 109 | return [ 'role' => $message['role'], 'content' => $message['content'] ]; |
| 110 | }, $messages ); |
| 111 | $this->messages = $messages; |
| 112 | $this->validateMessages(); |
| 113 | } |
| 114 | |
| 115 | public function getLastMessage() { |
| 116 | if ( !empty( $this->messages ) ) { |
| 117 | return $this->messages[count( $this->messages ) - 1]; |
| 118 | } |
| 119 | return null; |
| 120 | } |
| 121 | |
| 122 | // Function that adds a message just before the last message |
| 123 | public function injectContext( $content ) { |
| 124 | if ( !empty( $this->messages ) ) { |
| 125 | $lastMessage = $this->getLastMessage(); |
| 126 | $lastMessageIndex = count( $this->messages ) - 1; |
| 127 | $this->messages[$lastMessageIndex] = [ 'role' => 'system', 'content' => $content ]; |
| 128 | array_push( $this->messages, $lastMessage ); |
| 129 | } |
| 130 | $this->validateMessages(); |
| 131 | } |
| 132 | |
| 133 | /** |
| 134 | * The context that is used for the chat completion (mode === 'chat'). |
| 135 | * @param string $context The context to use. |
| 136 | */ |
| 137 | public function setContext( $context ) { |
| 138 | $this->context = apply_filters( 'mwai_ai_context', $context, $this ); |
| 139 | $this->validateMessages(); |
| 140 | } |
| 141 | |
| 142 | private function validateMessages() { |
| 143 | if ( empty( $this->messages ) ) { |
| 144 | $this->messages = []; |
| 145 | if ( !empty( $this->prompt ) ) { |
| 146 | array_push( $this->messages, [ 'role' => 'user', 'content' => $this->prompt ] ); |
| 147 | } |
| 148 | } |
| 149 | else if ( !empty( $this->prompt ) ) { |
| 150 | $lastMessage = $this->getLastMessage(); |
| 151 | $lastMessageIndex = count( $this->messages ) - 1; |
| 152 | $this->messages[$lastMessageIndex] = [ 'role' => $lastMessage['role'], 'content' => $this->prompt ]; |
| 153 | } |
| 154 | if ( !empty( $this->context ) ) { |
| 155 | if ( is_array( $this->messages ) && count( $this->messages ) > 0 ) { |
| 156 | if ( $this->messages[0]['role'] !== 'system' ) { |
| 157 | array_unshift( $this->messages, [ 'role' => 'system', 'content' => $this->context ] ); |
| 158 | } |
| 159 | else { |
| 160 | $this->messages[0]['content'] = $this->context; |
| 161 | } |
| 162 | } |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | /** |
| 167 | * The maximum number of tokens to generate in the completion. |
| 168 | * The token count of your prompt plus max_tokens cannot exceed the model's context length. |
| 169 | * Most models have a context length of 2048 tokens (except for the newest models, which support 4096). |
| 170 | * @param float $prompt The maximum number of tokens. |
| 171 | */ |
| 172 | public function setMaxTokens( $maxTokens ) { |
| 173 | $this->maxTokens = intval( $maxTokens ); |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Set the sampling temperature to use. Higher values means the model will take more risks. |
| 178 | * Try 0.9 for more creative applications, and 0 for ones with a well-defined answer. |
| 179 | * @param float $temperature The temperature. |
| 180 | */ |
| 181 | public function setTemperature( $temperature ) { |
| 182 | $temperature = floatval( $temperature ); |
| 183 | if ( $temperature > 1 ) { |
| 184 | $temperature = 1; |
| 185 | } |
| 186 | if ( $temperature < 0 ) { |
| 187 | $temperature = 0; |
| 188 | } |
| 189 | $this->temperature = round( $temperature, 2 ); |
| 190 | } |
| 191 | |
| 192 | /** |
| 193 | * Up to 4 sequences where the API will stop generating further tokens. |
| 194 | * The returned text will not contain the stop sequence. |
| 195 | * @param float $stop The stop. |
| 196 | */ |
| 197 | public function setStop( $stop ) { |
| 198 | if ( !empty( $stop ) ) { |
| 199 | $this->stop = $stop; |
| 200 | } |
| 201 | } |
| 202 | |
| 203 | // Based on the params of the query, update the attributes |
| 204 | public function injectParams( $params ) { |
| 205 | if ( isset( $params['model'] ) ) { |
| 206 | $this->setModel( $params['model'] ); |
| 207 | } |
| 208 | if ( isset( $params['prompt'] ) ) { |
| 209 | $this->setPrompt( $params['prompt'] ); |
| 210 | } |
| 211 | if ( isset( $params['messages'] ) ) { |
| 212 | $this->setMessages( $params['messages'] ); |
| 213 | } |
| 214 | if ( isset( $params['context'] ) ) { |
| 215 | $this->setContext( $params['context'] ); |
| 216 | } |
| 217 | if ( isset( $params['maxTokens'] ) ) { |
| 218 | $this->setMaxTokens( $params['maxTokens'] ); |
| 219 | } |
| 220 | if ( isset( $params['temperature'] ) ) { |
| 221 | $this->setTemperature( $params['temperature'] ); |
| 222 | } |
| 223 | if ( isset( $params['stop'] ) ) { |
| 224 | $this->setStop( $params['stop'] ); |
| 225 | } |
| 226 | if ( isset( $params['maxResults'] ) ) { |
| 227 | $this->setMaxResults( $params['maxResults'] ); |
| 228 | } |
| 229 | if ( isset( $params['env'] ) ) { |
| 230 | $this->setEnv( $params['env'] ); |
| 231 | } |
| 232 | if ( isset( $params['session'] ) ) { |
| 233 | $this->setSession( $params['session'] ); |
| 234 | } |
| 235 | // Should add the params related to Open AI and Azure |
| 236 | if ( isset( $params['service'] ) ) { |
| 237 | $this->setService( $params['service'] ); |
| 238 | } |
| 239 | if ( isset( $params['apiKey'] ) ) { |
| 240 | $this->setApiKey( $params['apiKey'] ); |
| 241 | } |
| 242 | } |
| 243 | } |