Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static function get_id(): string {
protected function load_metadata(): array {
return array(
'label' => __( 'Alt Text Generation', 'ai' ),
'description' => __( 'Generates descriptive alt text for images using AI vision models.', 'ai' ),
'description' => __( 'Generates descriptive alt text for images using AI vision models. Requires an AI provider that supports vision.', 'ai' ),
'category' => Experiment_Category::EDITOR,
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public static function get_id(): string {
protected function load_metadata(): array {
return array(
'label' => __( 'Content Classification', 'ai' ),
'description' => __( 'AI-powered suggestions for post tags and categories based on content analysis.', 'ai' ),
'description' => __( 'AI-powered suggestions for post tags and categories based on content analysis. Requires an AI provider that supports text generation.', 'ai' ),
'category' => Experiment_Category::EDITOR,
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static function get_id(): string {
protected function load_metadata(): array {
return array(
'label' => __( 'Excerpt Generation', 'ai' ),
'description' => __( 'Generates excerpt suggestions from content', 'ai' ),
'description' => __( 'Generates excerpt suggestions from content. Requires an AI provider that supports text generation.', 'ai' ),
'category' => Experiment_Category::EDITOR,
);
}
Expand Down
2 changes: 1 addition & 1 deletion includes/Experiments/Image_Generation/Image_Generation.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static function get_id(): string {
protected function load_metadata(): array {
return array(
'label' => __( 'Image Generation and Editing', 'ai' ),
'description' => __( 'Generate and edit images using AI', 'ai' ),
'description' => __( 'Generate and edit images using AI. Requires an AI provider that supports image generation.', 'ai' ),
'category' => Experiment_Category::EDITOR,
);
}
Expand Down
2 changes: 1 addition & 1 deletion includes/Experiments/Review_Notes/Review_Notes.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static function get_id(): string {
protected function load_metadata(): array {
return array(
'label' => __( 'Review Notes', 'ai' ),
'description' => __( 'Reviews post content block-by-block and adds Notes with suggestions for Accessibility, Readability, Grammar, and SEO.', 'ai' ),
'description' => __( 'Reviews post content block-by-block and adds Notes with suggestions for Accessibility, Readability, Grammar, and SEO. Requires an AI provider that supports text generation.', 'ai' ),
'category' => Experiment_Category::EDITOR,
);
}
Expand Down
2 changes: 1 addition & 1 deletion includes/Experiments/Summarization/Summarization.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static function get_id(): string {
protected function load_metadata(): array {
return array(
'label' => __( 'Content Summarization', 'ai' ),
'description' => __( 'Summarizes long-form content into digestible overviews', 'ai' ),
'description' => __( 'Summarizes long-form content into digestible overviews. Requires an AI provider that supports text generation.', 'ai' ),
'category' => Experiment_Category::EDITOR,
);
}
Expand Down
2 changes: 1 addition & 1 deletion includes/Experiments/Title_Generation/Title_Generation.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static function get_id(): string {
protected function load_metadata(): array {
return array(
'label' => __( 'Title Generation', 'ai' ),
'description' => __( 'Generates title suggestions from content', 'ai' ),
'description' => __( 'Generates title suggestions from content. Requires an AI provider that supports text generation.', 'ai' ),
'category' => Experiment_Category::EDITOR,
);
}
Expand Down
Loading