base.php
2 years ago
embed.php
2 years ago
function.php
2 years ago
image.php
2 years ago
parameter.php
2 years ago
text.php
2 years ago
transcribe.php
2 years ago
base.php
178 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_Query_Base implements JsonSerializable { |
| 4 | public string $env = ''; // Ouch, not sure if it's used, but afraid that it will be confused with the AI env. |
| 5 | public string $prompt = ''; |
| 6 | public string $model = ''; |
| 7 | public string $mode = ''; |
| 8 | public ?string $session = null; |
| 9 | public int $maxResults = 1; |
| 10 | public ?string $botId = null; |
| 11 | |
| 12 | // Functions |
| 13 | public array $functions = []; |
| 14 | public ?string $functionCall = null; |
| 15 | |
| 16 | // Overrides for env |
| 17 | public string $envId = ''; |
| 18 | public ?string $apiKey = null; |
| 19 | public ?string $service = null; // TODO: This should be removed at some point. Should use envId instead. |
| 20 | |
| 21 | public function __construct( $prompt = '' ) { |
| 22 | global $mwai_core; |
| 23 | $this->setPrompt( $prompt ); |
| 24 | $this->session = $mwai_core->get_session_id(); |
| 25 | } |
| 26 | |
| 27 | #[\ReturnTypeWillChange] |
| 28 | public function jsonSerialize() { |
| 29 | return [ |
| 30 | 'class' => get_class( $this ), |
| 31 | 'env' => $this->env, |
| 32 | 'envId' => $this->envId, |
| 33 | 'prompt' => $this->prompt, |
| 34 | 'model' => $this->model, |
| 35 | 'mode' => $this->mode, |
| 36 | 'session' => $this->session, |
| 37 | 'maxResults' => $this->maxResults |
| 38 | ]; |
| 39 | } |
| 40 | |
| 41 | public function addFunction( Meow_MWAI_Query_Function $function ): void { |
| 42 | $this->functions[] = $function; |
| 43 | $this->functionCall = "auto"; |
| 44 | } |
| 45 | |
| 46 | public function setFunctions( array $functions ): void { |
| 47 | $this->functions = $functions; |
| 48 | $this->functionCall = "auto"; |
| 49 | } |
| 50 | |
| 51 | public function getFunctions(): array { |
| 52 | return $this->functions; |
| 53 | } |
| 54 | |
| 55 | public function replace( $search, $replace ) { |
| 56 | $this->prompt = str_replace( $search, $replace, $this->prompt ); |
| 57 | } |
| 58 | |
| 59 | public function getLastPrompt(): string { |
| 60 | return $this->prompt; |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * The environment, like "chatbot", "imagesbot", "chatbot-007", "textwriter", etc... |
| 65 | * Used for statistics, mainly. |
| 66 | * @param string $env The environment. |
| 67 | */ |
| 68 | public function setEnv( string $env ): void { |
| 69 | $this->env = $env; |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * The environment ID for AI services. |
| 74 | * Used for statistics, mainly. |
| 75 | * @param string $envId The environment ID. |
| 76 | */ |
| 77 | public function setEnvId( string $envId ): void { |
| 78 | $this->envId = $envId; |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * ID of the model to use. |
| 83 | * @param string $model ID of the model to use. |
| 84 | */ |
| 85 | public function setModel( string $model ) { |
| 86 | $this->model = $model; |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * The mode |
| 91 | * @param string $mode. |
| 92 | */ |
| 93 | public function setMode( string $mode ) { |
| 94 | $this->mode = $mode; |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Given a prompt, the model will return one or more predicted completions. |
| 99 | * It can also return the probabilities of alternative tokens at each position. |
| 100 | * @param string $prompt The prompt to generate completions. |
| 101 | */ |
| 102 | public function setPrompt( string $prompt ) { |
| 103 | $this->prompt = $prompt; |
| 104 | } |
| 105 | |
| 106 | public function getPrompt() { |
| 107 | return $this->prompt; |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Similar to the prompt, but focus on the new/last message. |
| 112 | * Only used when the model has a chat mode (and only used in messages). |
| 113 | * With Meow_MWAI_Query_Base, this is the same as setPrompt. |
| 114 | * @param string $prompt The messages to generate completions. |
| 115 | */ |
| 116 | public function setNewMessage( string $newMessage ): void { |
| 117 | $this->setPrompt( $newMessage ); |
| 118 | } |
| 119 | |
| 120 | public function getLastMessage() { |
| 121 | return $this->getPrompt(); |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * The API key to use. |
| 126 | * @param string $apiKey The API key. |
| 127 | */ |
| 128 | public function setApiKey( string $apiKey ) { |
| 129 | $this->apiKey = $apiKey; |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * The service to use. |
| 134 | * @param string $service The service. |
| 135 | */ |
| 136 | public function setService( string $service ) { |
| 137 | $this->service = $service; |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * The session ID to use. |
| 142 | * @param string $session The session ID. |
| 143 | */ |
| 144 | public function setSession( string $session ) { |
| 145 | $this->session = $session; |
| 146 | } |
| 147 | |
| 148 | /** |
| 149 | * The bot ID to use. |
| 150 | * @param string $botId The bot ID. |
| 151 | */ |
| 152 | public function setBotId( string $botId ) { |
| 153 | $this->botId = $botId; |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * How many completions to generate for each prompt. |
| 158 | * Because this parameter generates many completions, it can quickly consume your token quota. |
| 159 | * Use carefully and ensure that you have reasonable settings for max_tokens and stop. |
| 160 | * @param float $maxResults Number of completions. |
| 161 | */ |
| 162 | public function setMaxResults( int $maxResults ) { |
| 163 | $this->maxResults = $maxResults; |
| 164 | } |
| 165 | |
| 166 | // ** |
| 167 | // * Check if everything is correct, otherwise fix it (like the max number of tokens). |
| 168 | // */ |
| 169 | public function finalChecks() { |
| 170 | } |
| 171 | |
| 172 | /* |
| 173 | * Get the JSON representation of the query. |
| 174 | */ |
| 175 | public function toJson() { |
| 176 | return json_encode( $this ); |
| 177 | } |
| 178 | } |