diff --git a/CHANGELOG.md b/CHANGELOG.md index c1919b8..9be3f50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +#### [Version 1.2.0](https://github.com/Codeinwp/hyve-lite/compare/v1.1.0...v1.2.0) (2024-10-14) + +### New Features +- **Choose Between GPT-3.5 and GPT-4o-mini**: Users can now select between GPT-3.5 and GPT-4o-mini for their interactions. GPT-4o-mini is much cheaper and provides better results. +- **Support for Rich Text in Chat Responses**: Chat responses now support rich text, allowing for enhanced results like images, links, and code snippets. +- **Website URL and Sitemap Crawling for Knowledge Base**: You can now add external content to your Knowledge Base, including data from your website and HelpScout docs, using Website URL and Sitemap Crawling. +- **Qdrant Integration for Improved Performance**: Users can now integrate with Qdrant to improve both performance and Knowledge Base limits. Qdrants free plan offers liberal limits suitable for most websites. + +### Improvements +- **PHP-tiktoken for Better Performance**: We’ve replaced js-tiktoken with php-tiktoken to significantly improve performance speed. +- **Minimum PHP Version Bumped to 8.1**: We’ve updated the minimum required PHP version to 8.1 to ensure better performance and security. +- Initial version. + #### [Version 1.1.0](https://github.com/Codeinwp/hyve-lite/compare/v1.0.0...v1.1.0) (2024-09-09) - Initial version. diff --git a/composer.json b/composer.json index fcc8339..c8874c1 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "codeinwp/hyve-lite", "description": "An AI support bot.", - "version": "1.1.0", + "version": "1.2.0", "type": "wordpress-plugin", "license": "GPL-V3", "autoload": { diff --git a/hyve-lite.php b/hyve-lite.php index ff591d4..a2c9a1c 100644 --- a/hyve-lite.php +++ b/hyve-lite.php @@ -7,7 +7,7 @@ * Plugin Name: Hyve Lite * Plugin URI: https://themeisle.com/plugins/hyve/ * Description: Hyve is an AI-powered chatbot that transforms your WordPress content into engaging conversations. - * Version: 1.1.0 + * Version: 1.2.0 * Author: ThemeIsle * Author URI: https://themeisle.com * License: GPL-3.0+ @@ -39,7 +39,7 @@ function () { define( 'HYVE_LITE_BASEFILE', __FILE__ ); define( 'HYVE_LITE_URL', plugins_url( '/', __FILE__ ) ); define( 'HYVE_LITE_PATH', __DIR__ ); -define( 'HYVE_LITE_VERSION', '1.1.0' ); +define( 'HYVE_LITE_VERSION', '1.2.0' ); $vendor_file = HYVE_LITE_PATH . '/vendor/autoload.php'; diff --git a/package.json b/package.json index 8f0d7f0..c193627 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hyve-lite", - "version": "1.1.0", + "version": "1.2.0", "description": "An AI support bot.", "scripts": { "build": "npm-run-all build:*", diff --git a/readme.txt b/readme.txt index 459922c..39e0a44 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: automation, support, chat, ai, openai Requires at least: 6.2 Tested up to: 6.6 Requires PHP: 8.1 -Stable tag: 1.1.0 +Stable tag: 1.2.0 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html