forked from WordPress/wp-ai-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.php
More file actions
22 lines (20 loc) · 656 Bytes
/
Copy pathplugin.php
File metadata and controls
22 lines (20 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* Plugin Name: AI Client
* Plugin URI: https://github.com/WordPress/wp-ai-client/
* Description: An AI client and API for WordPress to communicate with any generative AI models of various capabilities using a uniform API.
* Requires at least: 6.0
* Requires PHP: 7.4
* Version: n.e.x.t
* Author: WordPress AI Team
* Author URI: https://make.wordpress.org/ai/
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* Text Domain: wp-ai-client
*
* @package wp-ai-client
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
require_once __DIR__ . '/vendor/autoload.php';