UNPKG

react-native-deepgram

Version:

React Native SDK for Deepgram's AI-powered speech-to-text, real-time transcription, and text intelligence APIs. Supports live audio streaming, file transcription, sentiment analysis, and topic detection for iOS and Android.

10 lines (8 loc) 444 B
export { useDeepgramSpeechToText } from './useDeepgramSpeechToText'; export { useDeepgramTextIntelligence } from './useDeepgramTextIntelligence'; export { useDeepgramManagement } from './useDeepgramManagement'; export { useDeepgramTextToSpeech } from './useDeepgramTextToSpeech'; export { Deepgram } from './NativeDeepgram'; export const configure = (opts: { apiKey: string }) => { (globalThis as any).__DEEPGRAM_API_KEY__ = opts.apiKey; };