engines
2 years ago
modules
2 years ago
queries
2 years ago
admin.php
2 years ago
api.php
2 years ago
core.php
2 years ago
init.php
3 years ago
reply.php
2 years ago
rest.php
2 years ago
api.php
279 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_API { |
| 4 | public $core; |
| 5 | private $chatbot_module; |
| 6 | private $discussions_module; |
| 7 | |
| 8 | public function __construct( $chatbot_module, $discussions_module ) { |
| 9 | global $mwai_core; |
| 10 | $this->core = $mwai_core; |
| 11 | $this->chatbot_module = $chatbot_module; |
| 12 | $this->discussions_module = $discussions_module; |
| 13 | add_action( 'rest_api_init', array( $this, 'rest_api_init' ) ); |
| 14 | } |
| 15 | |
| 16 | #region REST API |
| 17 | function rest_api_init() { |
| 18 | $public_api = $this->core->get_option( 'public_api' ); |
| 19 | if ( !$public_api ) { |
| 20 | return; |
| 21 | } |
| 22 | register_rest_route( 'mwai/v1', '/simpleTextQuery', array( |
| 23 | 'methods' => 'POST', |
| 24 | 'callback' => array( $this, 'rest_simpleTextQuery' ), |
| 25 | 'permission_callback' => function( $request ) { |
| 26 | return $this->core->can_access_public_api( 'simpleTextQuery', $request ); |
| 27 | }, |
| 28 | ) ); |
| 29 | register_rest_route( 'mwai/v1', '/simpleVisionQuery', array( |
| 30 | 'methods' => 'POST', |
| 31 | 'callback' => array( $this, 'rest_simpleVisionQuery' ), |
| 32 | 'permission_callback' => function( $request ) { |
| 33 | return $this->core->can_access_public_api( 'simpleVisionQuery', $request ); |
| 34 | }, |
| 35 | ) ); |
| 36 | register_rest_route( 'mwai/v1', '/simpleJsonQuery', array( |
| 37 | 'methods' => 'POST', |
| 38 | 'callback' => array( $this, 'rest_simpleJsonQuery' ), |
| 39 | 'permission_callback' => function( $request ) { |
| 40 | return $this->core->can_access_public_api( 'simpleJsonQuery', $request ); |
| 41 | }, |
| 42 | ) ); |
| 43 | register_rest_route( 'mwai/v1', '/moderationCheck', array( |
| 44 | 'methods' => 'POST', |
| 45 | 'callback' => array( $this, 'rest_moderationCheck' ), |
| 46 | 'permission_callback' => function( $request ) { |
| 47 | return $this->core->can_access_public_api( 'moderationCheck', $request ); |
| 48 | }, |
| 49 | ) ); |
| 50 | |
| 51 | if ( $this->chatbot_module ) { |
| 52 | register_rest_route( 'mwai/v1', '/simpleChatbotQuery', array( |
| 53 | 'methods' => 'POST', |
| 54 | 'callback' => array( $this, 'rest_simpleChatbotQuery' ), |
| 55 | 'permission_callback' => function( $request ) { |
| 56 | return $this->core->can_access_public_api( 'simpleChatbotQuery', $request ); |
| 57 | }, |
| 58 | ) ); |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | public function rest_simpleChatbotQuery( $request ) { |
| 63 | try { |
| 64 | $params = $request->get_params(); |
| 65 | $botId = isset( $params['botId'] ) ? $params['botId'] : ''; |
| 66 | $prompt = isset( $params['prompt'] ) ? $params['prompt'] : ''; |
| 67 | $chatId = isset( $params['chatId'] ) ? $params['chatId'] : null; |
| 68 | $params = null; |
| 69 | if ( !empty( $chatId ) ) { |
| 70 | $params = array( 'chatId' => $chatId ); |
| 71 | } |
| 72 | if ( empty( $botId ) || empty( $prompt ) ) { |
| 73 | throw new Exception( 'The botId and prompt are required.' ); |
| 74 | } |
| 75 | $reply = $this->simpleChatbotQuery( $botId, $prompt, $params ); |
| 76 | return new WP_REST_Response([ 'success' => true, 'data' => $reply ], 200 ); |
| 77 | } |
| 78 | catch (Exception $e) { |
| 79 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | public function rest_simpleTextQuery( $request ) { |
| 84 | try { |
| 85 | $params = $request->get_params(); |
| 86 | $prompt = isset( $params['prompt'] ) ? $params['prompt'] : ''; |
| 87 | $options = isset( $params['options'] ) ? $params['options'] : []; |
| 88 | $env = isset( $params['env'] ) ? $params['env'] : 'public-api'; |
| 89 | if ( !empty( $env ) ) { |
| 90 | $options['env'] = $env; |
| 91 | } |
| 92 | if ( empty( $prompt ) ) { |
| 93 | throw new Exception( 'The prompt is required.' ); |
| 94 | } |
| 95 | $reply = $this->simpleTextQuery( $prompt, $options ); |
| 96 | return new WP_REST_Response([ 'success' => true, 'data' => $reply ], 200 ); |
| 97 | } |
| 98 | catch (Exception $e) { |
| 99 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | public function rest_simpleVisionQuery( $request ) { |
| 104 | try { |
| 105 | $params = $request->get_params(); |
| 106 | $prompt = isset( $params['prompt'] ) ? $params['prompt'] : ''; |
| 107 | $url = isset( $params['url'] ) ? $params['url'] : ''; |
| 108 | $path = isset( $params['path'] ) ? $params['path'] : ''; |
| 109 | $options = isset( $params['options'] ) ? $params['options'] : []; |
| 110 | $env = isset( $params['env'] ) ? $params['env'] : 'public-api'; |
| 111 | if ( !empty( $env ) ) { |
| 112 | $options['env'] = $env; |
| 113 | } |
| 114 | if ( empty( $prompt ) ) { |
| 115 | throw new Exception( 'The prompt is required.' ); |
| 116 | } |
| 117 | if ( empty( $url ) && empty( $path ) ) { |
| 118 | throw new Exception( 'The url or path is required.' ); |
| 119 | } |
| 120 | $reply = $this->simpleVisionQuery( $prompt, $url, $path, $options ); |
| 121 | return new WP_REST_Response([ 'success' => true, 'data' => $reply ], 200 ); |
| 122 | } |
| 123 | catch (Exception $e) { |
| 124 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | public function rest_simpleJsonQuery( $request ) { |
| 129 | try { |
| 130 | $params = $request->get_params(); |
| 131 | $prompt = isset( $params['prompt'] ) ? $params['prompt'] : ''; |
| 132 | $options = isset( $params['options'] ) ? $params['options'] : []; |
| 133 | $env = isset( $params['env'] ) ? $params['env'] : 'public-api'; |
| 134 | if ( !empty( $env ) ) { |
| 135 | $options['env'] = $env; |
| 136 | } |
| 137 | if ( empty( $prompt ) ) { |
| 138 | throw new Exception( 'The prompt is required.' ); |
| 139 | } |
| 140 | $reply = $this->simpleJsonQuery( $prompt, $options ); |
| 141 | return new WP_REST_Response([ 'success' => true, 'data' => $reply ], 200 ); |
| 142 | } |
| 143 | catch (Exception $e) { |
| 144 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | public function rest_moderationCheck( $request ) { |
| 149 | try { |
| 150 | $params = $request->get_params(); |
| 151 | $text = $params['text']; |
| 152 | $reply = $this->moderationCheck( $text ); |
| 153 | return new WP_REST_Response([ 'success' => true, 'data' => $reply ], 200 ); |
| 154 | } |
| 155 | catch (Exception $e) { |
| 156 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 157 | } |
| 158 | } |
| 159 | #endregion |
| 160 | |
| 161 | #region Simple API |
| 162 | /** |
| 163 | * Executes a vision query.` |
| 164 | * |
| 165 | * @param string $prompt The prompt for the AI. |
| 166 | * @param string $url The URL of the image to analyze. |
| 167 | * @param string|null $path The path to the image file. If provided, the image data will be read from this file. |
| 168 | * @param array $params Additional parameters for the AI query. |
| 169 | * |
| 170 | * @return string The result of the AI query. |
| 171 | */ |
| 172 | public function simpleVisionQuery( $prompt, $url, $path = null, $params = [] ) { |
| 173 | global $mwai_core; |
| 174 | $query = new Meow_MWAI_Query_Text( $prompt ); |
| 175 | $query->injectParams( $params ); |
| 176 | $query->setModel( MWAI_FALLBACK_MODEL_VISION ); |
| 177 | $remote_upload = $this->core->get_option( 'image_remote_upload' ); |
| 178 | $preferURL = $remote_upload === 'url'; |
| 179 | |
| 180 | if ( $preferURL && $url ) { |
| 181 | $query->setNewImage( $url ); |
| 182 | } |
| 183 | else if ( !$preferURL && !empty( $path ) ) { |
| 184 | $data = base64_encode( file_get_contents( $path ) ); |
| 185 | $query->setNewImageData( $data ); |
| 186 | } |
| 187 | else if ( $url ) { |
| 188 | $query->setNewImage( $url ); |
| 189 | } |
| 190 | else if ( !empty($path ) ) { |
| 191 | $data = base64_encode( file_get_contents( $path ) ); |
| 192 | $query->setNewImageData( $data ); |
| 193 | } |
| 194 | |
| 195 | $reply = $mwai_core->ai->run( $query ); |
| 196 | return $reply->result; |
| 197 | } |
| 198 | |
| 199 | /** |
| 200 | * Executes a chatbot query. |
| 201 | * It will use the discussion if chatId is provided in the parameters. |
| 202 | * |
| 203 | * @param string $botId The ID of the chatbot. |
| 204 | * @param string $prompt The prompt for the AI. |
| 205 | * @param array $params Additional parameters for the AI query. |
| 206 | * |
| 207 | * @return string The result of the AI query. |
| 208 | */ |
| 209 | public function simpleChatbotQuery( $botId, $prompt, $params = [] ) { |
| 210 | if ( !isset( $params['messages'] ) && isset( $params['chatId'] ) ) { |
| 211 | $discussion = $this->discussions_module->get_discussion( $botId, $params['chatId'] ); |
| 212 | if ( !empty( $discussion ) ) { |
| 213 | $params['messages'] = $discussion->messages; |
| 214 | } |
| 215 | } |
| 216 | $data = $this->chatbot_module->chat_submit( $botId, $prompt, $params ); |
| 217 | return $data['reply']; |
| 218 | } |
| 219 | |
| 220 | /** |
| 221 | * Executes a text query. |
| 222 | * |
| 223 | * @param string $prompt The prompt for the AI. |
| 224 | * @param array $params Additional parameters for the AI query. |
| 225 | * |
| 226 | * @return string The result of the AI query. |
| 227 | */ |
| 228 | public function simpleTextQuery( $prompt, $params = [] ) { |
| 229 | global $mwai_core; |
| 230 | $query = new Meow_MWAI_Query_Text( $prompt ); |
| 231 | $query->injectParams( $params ); |
| 232 | $reply = $mwai_core->ai->run( $query ); |
| 233 | return $reply->result; |
| 234 | } |
| 235 | |
| 236 | /** |
| 237 | * Executes a query that will have to return a JSON result. |
| 238 | * |
| 239 | * @param string $prompt The prompt for the AI. |
| 240 | * @param array $params Additional parameters for the AI query. |
| 241 | * |
| 242 | * @return array The result of the AI query. |
| 243 | */ |
| 244 | public function simpleJsonQuery( $prompt, $url = null, $path = null, $params = [] ) { |
| 245 | if ( !empty( $url ) || !empty( $path ) ) { |
| 246 | throw new Exception( 'The url and path are not supported yet by the simpleJsonQuery.' ); |
| 247 | } |
| 248 | global $mwai_core; |
| 249 | $query = new Meow_MWAI_Query_Text( $prompt . "\nYour reply must be a formatted JSON." ); |
| 250 | $query->injectParams( $params ); |
| 251 | $query->setResponseFormat( 'json' ); |
| 252 | $query->setModel( MWAI_FALLBACK_MODEL_JSON ); |
| 253 | $reply = $mwai_core->ai->run( $query ); |
| 254 | try { |
| 255 | $json = json_decode( $reply->result, true ); |
| 256 | return $json; |
| 257 | } |
| 258 | catch ( Exception $e ) { |
| 259 | throw new Exception( 'The result is not a valid JSON.' ); |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | /** |
| 264 | * Checks if a text is safe or not. |
| 265 | * |
| 266 | * @param string $text The text to check. |
| 267 | * |
| 268 | * @return bool True if the text is safe, false otherwise. |
| 269 | */ |
| 270 | public function moderationCheck( $text ) { |
| 271 | global $mwai_core; |
| 272 | $openai = new Meow_MWAI_Engines_OpenAI( $mwai_core ); |
| 273 | $res = $openai->moderate( $text ); |
| 274 | if ( !empty( $res ) && !empty( $res['results'] ) ) { |
| 275 | return (bool)$res['results'][0]['flagged']; |
| 276 | } |
| 277 | } |
| 278 | #endregion |
| 279 | } |