Plugin Directory

Changeset 3322935


Ignore:
Timestamp:
07/06/2025 07:09:54 AM (9 months ago)
Author:
binaryph
Message:

Update AI instructions
Update delay AI interaction to 5 seconds

Location:
binaryph-ai-seo/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • binaryph-ai-seo/trunk/admin/settings.php

    r3317338 r3322935  
    9696        </ul>
    9797    </li>
    98     <li>Rate Limit Protection: Includes a built-in 15-second pause between suggestions to prevent overwhelming AI models, especially useful when using "Thinking/Reasoning" models. If you encounter an error due to many posts, pages, or products to set keywords when applying the suggestion by the AI, try checking only the checkboxes by 10 items. This usually depends on your hosting capacity to perform the task, or probably because of a timeout set within your WordPress environment.</li>
     98    <li>Rate Limit Protection: Includes a built-in 5-second pause between suggestions to prevent overwhelming AI models, especially useful when using "Thinking/Reasoning" models. If you encounter an error due to many posts, pages, or products to set keywords when applying the suggestion by the AI, try checking only the checkboxes by 10 items. This usually depends on your hosting capacity to perform the task, or probably because of a timeout set within your WordPress environment.</li>
    9999</ul>
    100100</p>
  • binaryph-ai-seo/trunk/assets/js/admin.js

    r3317338 r3322935  
    1313        var $tableBody = $('#' + type + '-table-body');
    1414        var rows = $tableBody.find('tr').toArray();
    15         var delay = 15000; // 15 seconds delay between requests to the AI provider
     15        var delay = 5000; // 5 seconds delay between requests to the AI provider
    1616
    1717        function processRow(index) {
  • binaryph-ai-seo/trunk/binaryph-ai-seo.php

    r3319056 r3322935  
    44 * Plugin URI: https://binary.ph/binaryph-ai-seo
    55 * Description: Automatically adds focus keywords to posts, pages, and products using AI for SEO optimization. Compatible with Yoast, Rank Math and WooCommerce
    6  * Version: 1.0.2
     6 * Version: 1.0.3
    77 * Author: BinaryPH
    88 * Author URI: https://binary.ph
  • binaryph-ai-seo/trunk/includes/ai-integration.php

    r3317338 r3322935  
    1111    $ai_model = get_option('binaryph_ai_seo_ai_model', '');
    1212
    13     $prompt = "Generate focus keywords for Search Engine Optimization (SEO) based on this title: $title. Provide only 1 focus keyword, without any additional text.";
     13    $prompt = "Analyze the title: $title, and extract from it a single contiguous phrase, using the words in their ORIGINAL ORDER, that will serve as the most effective SEO focus keyword. Make sure that the output should be an exact phrase with words in the same order in the title: $title. Provide only 1 focus keyword, without any additional text and quotes.";
    1414
    1515    $endpoint = '';
  • binaryph-ai-seo/trunk/readme.txt

    r3319057 r3322935  
    33Requires at least: 6.8
    44Tested up to: 6.8
    5 Stable tag: 1.0.2
     5Stable tag: 1.0.3
    66License: GPL2
    77
    8 Boost SEO with AI-generated focus keywords for posts, pages & products. Works with Yoast, Rank Math & WooCommerce.
     8Boost SEO with AI-generated focus keywords for posts, pages & products. Works with Yoast, Rank Math & WooCommerce. Full instructions: https://binary.ph/binaryph-ai-seo/
    99
    1010== External Services ==
Note: See TracChangeset for help on using the changeset viewer.