Skip to content

Commit

Permalink
Update text based on review
Browse files Browse the repository at this point in the history
  • Loading branch information
dkotter committed Jul 6, 2023
1 parent 4c3ee97 commit 2d42a79
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ Whatever options you have selected in the Category, Keyword, Entity, and Concept

We recommend that you are transparent with your users that AI tools are being used. This can be done by adding a notice to your site's Privacy Policy or similar page. Sample copy is provided below:

> This site makes use of Artificial Intelligence tools that may include image generation, post title and excerpt generation, image alt text generation, post and media tagging, text-to-speech audio generation, speech-to-text transcript generation, image smart focal point cropping, media text recognition, and recommended content.
> This site makes use of Artificial Intelligence tools to help with tasks like language processing, image processing, and content recommendations.
## Support Level

Expand Down
4 changes: 2 additions & 2 deletions includes/Classifai/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ public function init_admin_helpers() {
* Adds information to the privacy policy.
*/
public function add_privacy_policy_content() {
$content = '<p class="privacy-policy-tutorial">' . esc_html__( 'ClassifAI provides integrations with various AI providers. We recommend that you are transparent with your users that these AI tools are being used.', 'classifai' ) . '</p>';
$content = '<p class="privacy-policy-tutorial">' . esc_html__( 'ClassifAI integrates with various AI service providers. We recommend that you are transparent with your users that these AI integrations are in use.', 'classifai' ) . '</p>';
$content .= '<strong class="privacy-policy-tutorial">' . esc_html__( 'Suggested text:', 'classifai' ) . '</strong> ';
$content .= esc_html__( 'This site makes use of Artificial Intelligence tools that may include image generation, post title and excerpt generation, image alt text generation, post and media tagging, text-to-speech audio generation, speech-to-text transcript generation, image smart focal point cropping, media text recognition, and recommended content.', 'classifai' );
$content .= esc_html__( 'This site makes use of Artificial Intelligence tools to help with tasks like language processing, image processing, and content recommendations.', 'classifai' );

wp_add_privacy_policy_content( 'ClassifAI', wp_kses_post( wpautop( $content, false ) ) );
}
Expand Down

0 comments on commit 2d42a79

Please sign in to comment.