ai-engine
Last commit date
app
3 years ago
classes
3 years ago
common
3 years ago
images
3 years ago
languages
3 years ago
vendor
3 years ago
ai-engine.php
3 years ago
readme.txt
3 years ago
ai-engine.php
26 lines
| 1 | <?php |
| 2 | /* |
| 3 | Plugin Name: AI Engine: ChatGPT, GPT-3 Content Generator, AI Tools & Playground |
| 4 | Plugin URI: https://wordpress.org/plugins/ai-engine/ |
| 5 | Description: Elevate your WordPress site with AI Engine! This plugin generates content, suggests ways to improve your content, adds a ChatGPT-style chatbot, and includes an AI Playground. It also tracks your OpenAI usage and offers an internal API for other plugins. |
| 6 | Version: 0.1.9 |
| 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.1.9' ); |
| 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 |