For the complete documentation index, see llms.txt. This page is also available as Markdown.

Events

Events emitted by the SDK Provider

The SDK Provider emits events during its life Flow to provide information during use.

Usage example

<facephi-sdk-provider
    apikey={process.env.FACEPHI_SDK_APIKEY}
    onEmitData={(event) => {
        console.log('DATA:', event.detail);
    }}
    onEmitError={(event) => {
        console.error('ERROR:', event.detail);
    }}
>
    (...)
</facephi-sdk-provider>

Events emitted by SDK Provider

Last updated