UNPKG

@revrag-ai/embed-react-native

Version:

A powerful React Native library for integrating AI-powered voice agents into mobile applications. Features real-time voice communication, intelligent speech processing, customizable UI components, and comprehensive event handling for building conversation

17 lines (14 loc) 967 B
"use strict"; // This module imports the `registerGlobals` function from the LiveKit React Native library. // The `registerGlobals` function is used to register global settings and configurations // for the LiveKit service, which is essential for managing real-time audio and video // communication in the application. The `registerAgent` constant is created as an alias // for `registerGlobals`, allowing for easier reference in other parts of the application. // Finally, the `registerAgent` is exported as the default export of this module, making // it available for use in other modules that require the registration of LiveKit globals. import { registerGlobals } from '@livekit/react-native'; // The registerAgent constant is an alias for the registerGlobals function, // which is used to set up global configurations for the LiveKit service. const registerAgent = registerGlobals; export default registerAgent; //# sourceMappingURL=initialize.livekit.js.map