PluginProbe
AI Engine – The Chatbot, AI Framework & MCP for WordPress / 0.3.0
AI Engine – The Chatbot, AI Framework & MCP for WordPress v0.3.0
3.7.7 3.7.6 3.7.5 3.7.4 3.7.3 3.7.2 3.7.1 3.7.0 3.6.9 3.6.8 3.6.7 3.6.6 3.6.4 3.6.5 3.6.3 3.6.2 3.6.1 3.6.0 3.5.9 3.5.8 3.5.7 3.5.6 3.5.5 3.5.4 3.5.3 All 527 releases
ai-engine / ai-engine.php
ai-engine.php
26 lines 922 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Plugin Name: AI Engine: ChatGPT, GPT3 Content & Image Generator, Playground
4 Plugin URI: https://wordpress.org/plugins/ai-engine/
5 Description: Elevate your WordPress site with AI! Generate content and images, add a ChatGPT-style bot that can be trained with your data, fine-tune AI models, have fun in the AI Playground, and more! It also tracks the OpenAI usage and offers an internal API for other plugins.
6 Version: 0.3.0
7 Author: Jordy Meow
8 Author URI: https://jordymeow.com
9 Text Domain: ai-engine
10
11 Dual licensed under the MIT and GPL licenses:
12 http://www.opensource.org/licenses/mit-license.php
13 http://www.gnu.org/licenses/gpl.html
14 */
15
16 define( 'MWAI_VERSION', '0.3.0' );
17 define( 'MWAI_PREFIX', 'mwai' );
18 define( 'MWAI_DOMAIN', 'ai-engine' );
19 define( 'MWAI_ENTRY', __FILE__ );
20 define( 'MWAI_PATH', dirname( __FILE__ ) );
21 define( 'MWAI_URL', plugin_dir_url( __FILE__ ) );
22
23 require_once( 'classes/init.php' );
24
25 ?>
26