Plugin Directory

Changeset 3345233


Ignore:
Timestamp:
08/15/2025 04:16:14 PM (4 months ago)
Author:
extrachill
Message:

Release version 1.0.4.2 - Critical fix for OpenAI API timeout issue

Location:
ai-bot-for-bbpress
Files:
5 edited
3 copied

Legend:

Unmodified
Added
Removed
  • ai-bot-for-bbpress/tags/1.0.4.2/ai-bot-for-bbpress.php

    r3341478 r3345233  
    44 * Plugin URI:  https://wordpress.org/plugins/ai-bot-for-bbpress/
    55 * Description: AI bot for bbPress forums that can be configured to reply to mentions or keywords.
    6  * Version:     1.0.4.1
     6 * Version:     1.0.4.2
    77 * Author:      Chubes
    88 * Author URI:  https://chubes.net
  • ai-bot-for-bbpress/tags/1.0.4.2/inc/api/class-chatgpt-api.php

    r3341478 r3345233  
    6767                )
    6868            ),
    69             'method'  => 'POST'
     69            'method'  => 'POST',
     70            'timeout' => 60 // Set 60-second timeout for OpenAI API
    7071        );
    7172
  • ai-bot-for-bbpress/tags/1.0.4.2/readme.txt

    r3344099 r3345233  
    44Requires at least: 5.0
    55Tested up to: 6.8
    6 Stable tag: 1.0.4.1
     6Stable tag: 1.0.4.2
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    104104== Changelog ==
    105105
     106= 1.0.4.2 =
     107* CRITICAL FIX: Set explicit 60-second timeout for OpenAI API calls to prevent WordPress 5-second default timeout
     108* Fix: Resolves bot failures in longer conversations due to API timeout
     109
    106110= 1.0.4.1 =
    107111* HOTFIX: Removed API timeout constraints that caused bot failures in longer conversations
  • ai-bot-for-bbpress/trunk/ai-bot-for-bbpress.php

    r3341478 r3345233  
    44 * Plugin URI:  https://wordpress.org/plugins/ai-bot-for-bbpress/
    55 * Description: AI bot for bbPress forums that can be configured to reply to mentions or keywords.
    6  * Version:     1.0.4.1
     6 * Version:     1.0.4.2
    77 * Author:      Chubes
    88 * Author URI:  https://chubes.net
  • ai-bot-for-bbpress/trunk/inc/api/class-chatgpt-api.php

    r3341478 r3345233  
    6767                )
    6868            ),
    69             'method'  => 'POST'
     69            'method'  => 'POST',
     70            'timeout' => 60 // Set 60-second timeout for OpenAI API
    7071        );
    7172
  • ai-bot-for-bbpress/trunk/readme.txt

    r3344099 r3345233  
    44Requires at least: 5.0
    55Tested up to: 6.8
    6 Stable tag: 1.0.4.1
     6Stable tag: 1.0.4.2
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    104104== Changelog ==
    105105
     106= 1.0.4.2 =
     107* CRITICAL FIX: Set explicit 60-second timeout for OpenAI API calls to prevent WordPress 5-second default timeout
     108* Fix: Resolves bot failures in longer conversations due to API timeout
     109
    106110= 1.0.4.1 =
    107111* HOTFIX: Removed API timeout constraints that caused bot failures in longer conversations
Note: See TracChangeset for help on using the changeset viewer.