# jetpack/16.2/modules/ai.php

Jetpack – WP Security, Backup, Speed, &amp; Growth, version 16.2. 31 lines.

- Page: https://pluginprobe.com/plugins/jetpack/16.2/code/modules/ai.php
- Raw: https://pluginprobe.com/plugins/jetpack/16.2/raw/modules/ai.php
- Modified: 2026-08-25T12:48:14+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/jetpack/16.2/code/modules/ai.php#L10-L20`.

```php
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
/**
 * Module Name: AI
 * Module Description: Turn your ideas into ready-to-publish content and generate images with the power of AI.
 * Sort Order: 40
 * Recommendation Order: 15
 * First Introduced: 16.2-a.3
 * Requires Connection: Yes
 * Requires User Connection: Yes
 * Auto Activate: Yes
 * Module Tags: Writing
 * Feature: Writing
 * Additional Search Queries: ai, artificial intelligence, jetpack ai, ai assistant, generate, content, images
 *
 * @package automattic/jetpack
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit( 0 );
}

/*
 * This module is intentionally a toggle only: it bootstraps no code of its own.
 *
 * Jetpack AI enforcement already lives in `_inc/lib/class-jetpack-ai-settings.php`,
 * which self-initializes on load, so there is nothing to wire up here. The module
 * exists so that Jetpack AI can be turned on and off site-wide through the standard
 * Jetpack module machinery (and, for existing sites, keep auto-enabling on connection
 * via the normal module upgrade routine). Deliberately leave the body empty.
 */

```
