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.
12 lines (10 loc) • 361 B
text/typescript
/**
* HTTP methods supported for callback URLs.
*/
export type DeepgramCallbackMethod = 'POST' | 'PUT' | (string & {});
/**
* Mode for handling custom vocabulary/topics/intents.
* - `extended`: Augments the base model's knowledge.
* - `strict`: Limits the model to only the provided vocabulary.
*/
export type DeepgramCustomMode = 'extended' | 'strict';