Plugin Directory

Changeset 3303728


Ignore:
Timestamp:
05/30/2025 05:17:09 PM (10 months ago)
Author:
wpmobo
Message:

added appsero

Location:
genchat
Files:
18 added
4 edited

Legend:

Unmodified
Added
Removed
  • genchat/tags/1.0.0/genchat.php

    r3303701 r3303728  
    5757    {
    5858
     59        add_action( 'init', [ $this, 'client_insights' ] );
    5960        $this->include();
    6061        add_action('init', [$this, 'init']);
     
    9192    }
    9293
     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
    93107}
    94108
  • genchat/tags/1.0.0/readme.txt

    r3303701 r3303728  
    108108This 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.
    109109
     110
     111
     112## Privacy Policy
     113
     114Genchat 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
     116Appsero 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
     118Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.**
     119
     120Learn more about how [Appsero collects and uses this data](https://appsero.com/privacy-policy/).
     121
     122
     123
     124
    110125== Changelog ==
    111126
  • genchat/trunk/genchat.php

    r3303701 r3303728  
    5757    {
    5858
     59        add_action( 'init', [ $this, 'client_insights' ] );
    5960        $this->include();
    6061        add_action('init', [$this, 'init']);
     
    9192    }
    9293
     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
    93107}
    94108
  • genchat/trunk/readme.txt

    r3303701 r3303728  
    108108This 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.
    109109
     110
     111
     112## Privacy Policy
     113
     114Genchat 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
     116Appsero 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
     118Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.**
     119
     120Learn more about how [Appsero collects and uses this data](https://appsero.com/privacy-policy/).
     121
     122
     123
     124
    110125== Changelog ==
    111126
Note: See TracChangeset for help on using the changeset viewer.