Changeset 3303728
- Timestamp:
- 05/30/2025 05:17:09 PM (10 months ago)
- Location:
- genchat
- Files:
-
- 18 added
- 4 edited
-
tags/1.0.0/appsero (added)
-
tags/1.0.0/appsero/.editorconfig (added)
-
tags/1.0.0/appsero/.php-cs-fixer.dist.php (added)
-
tags/1.0.0/appsero/phpcs.xml.dist (added)
-
tags/1.0.0/appsero/readme.md (added)
-
tags/1.0.0/appsero/src (added)
-
tags/1.0.0/appsero/src/Client.php (added)
-
tags/1.0.0/appsero/src/Insights.php (added)
-
tags/1.0.0/appsero/src/License.php (added)
-
tags/1.0.0/genchat.php (modified) (2 diffs)
-
tags/1.0.0/readme.txt (modified) (1 diff)
-
trunk/appsero (added)
-
trunk/appsero/.editorconfig (added)
-
trunk/appsero/.php-cs-fixer.dist.php (added)
-
trunk/appsero/phpcs.xml.dist (added)
-
trunk/appsero/readme.md (added)
-
trunk/appsero/src (added)
-
trunk/appsero/src/Client.php (added)
-
trunk/appsero/src/Insights.php (added)
-
trunk/appsero/src/License.php (added)
-
trunk/genchat.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
genchat/tags/1.0.0/genchat.php
r3303701 r3303728 57 57 { 58 58 59 add_action( 'init', [ $this, 'client_insights' ] ); 59 60 $this->include(); 60 61 add_action('init', [$this, 'init']); … … 91 92 } 92 93 94 public function client_insights() { 95 96 if ( ! class_exists( 'Appsero\Client' ) ) { 97 require_once __DIR__ . '/appsero/src/Client.php'; 98 } 99 100 $client = new Appsero\Client( '0681f451-ebd0-4dce-a45f-a2619fa87de4', 'Genchat – AI Chatbot for Customer Support', __FILE__ ); 101 102 // Active insights 103 $client->insights()->init(); 104 105 } 106 93 107 } 94 108 -
genchat/tags/1.0.0/readme.txt
r3303701 r3303728 108 108 This connection is necessary for the plugin's core AI functionality. If you do not wish to use the OpenAI API, the AI features of the plugin will not function. 109 109 110 111 112 ## Privacy Policy 113 114 Genchat uses [Appsero](https://appsero.com) SDK to collect some telemetry data upon user's confirmation. This helps us to troubleshoot problems faster & make product improvements. 115 116 Appsero SDK **does not gather any data by default.** The SDK only starts gathering basic telemetry data **when a user allows it via the admin notice**. We collect the data to ensure a great user experience for all our users. 117 118 Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.** 119 120 Learn more about how [Appsero collects and uses this data](https://appsero.com/privacy-policy/). 121 122 123 124 110 125 == Changelog == 111 126 -
genchat/trunk/genchat.php
r3303701 r3303728 57 57 { 58 58 59 add_action( 'init', [ $this, 'client_insights' ] ); 59 60 $this->include(); 60 61 add_action('init', [$this, 'init']); … … 91 92 } 92 93 94 public function client_insights() { 95 96 if ( ! class_exists( 'Appsero\Client' ) ) { 97 require_once __DIR__ . '/appsero/src/Client.php'; 98 } 99 100 $client = new Appsero\Client( '0681f451-ebd0-4dce-a45f-a2619fa87de4', 'Genchat – AI Chatbot for Customer Support', __FILE__ ); 101 102 // Active insights 103 $client->insights()->init(); 104 105 } 106 93 107 } 94 108 -
genchat/trunk/readme.txt
r3303701 r3303728 108 108 This connection is necessary for the plugin's core AI functionality. If you do not wish to use the OpenAI API, the AI features of the plugin will not function. 109 109 110 111 112 ## Privacy Policy 113 114 Genchat uses [Appsero](https://appsero.com) SDK to collect some telemetry data upon user's confirmation. This helps us to troubleshoot problems faster & make product improvements. 115 116 Appsero SDK **does not gather any data by default.** The SDK only starts gathering basic telemetry data **when a user allows it via the admin notice**. We collect the data to ensure a great user experience for all our users. 117 118 Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.** 119 120 Learn more about how [Appsero collects and uses this data](https://appsero.com/privacy-policy/). 121 122 123 124 110 125 == Changelog == 111 126
Note: See TracChangeset
for help on using the changeset viewer.