UNPKG

@deepgram/sdk

Version:

Isomorphic Javascript client for Deepgram

205 lines (179 loc) 7.9 kB
import { CallbackUrl, isFileSource, isUrlSource } from "../lib/helpers"; import { DeepgramError, isDeepgramError } from "../lib/errors"; import type { AsyncPrerecordedResponse, DeepgramResponse, FileSource, PrerecordedSchema, SyncPrerecordedResponse, UrlSource, } from "../lib/types"; import { AbstractRestClient } from "./AbstractRestClient"; /** * The `ListenRestClient` class extends the `AbstractRestClient` class and provides methods for transcribing audio from URLs or files using the Deepgram API. * * The `transcribeUrl` method is used to transcribe audio from a URL synchronously. It takes a `UrlSource` object as the source, an optional `PrerecordedSchema` object as options, and an optional endpoint string. It returns a `DeepgramResponse` object containing the transcription result or an error. * * The `transcribeFile` method is used to transcribe audio from a file synchronously. It takes a `FileSource` object as the source, an optional `PrerecordedSchema` object as options, and an optional endpoint string. It returns a `DeepgramResponse` object containing the transcription result or an error. * * The `transcribeUrlCallback` method is used to transcribe audio from a URL asynchronously. It takes a `UrlSource` object as the source, a `CallbackUrl` object as the callback, an optional `PrerecordedSchema` object as options, and an optional endpoint string. It returns a `DeepgramResponse` object containing the transcription result or an error. * * The `transcribeFileCallback` method is used to transcribe audio from a file asynchronously. It takes a `FileSource` object as the source, a `CallbackUrl` object as the callback, an optional `PrerecordedSchema` object as options, and an optional endpoint string. It returns a `DeepgramResponse` object containing the transcription result or an error. */ export class ListenRestClient extends AbstractRestClient { public namespace: string = "listen"; /** * Transcribes audio from a URL synchronously. * * @param source - The URL source object containing the audio URL to transcribe. * @param options - An optional `PrerecordedSchema` object containing additional options for the transcription. * @param endpoint - An optional endpoint string to use for the transcription request. * @returns A `DeepgramResponse` object containing the transcription result or an error. */ async transcribeUrl( source: UrlSource, options?: PrerecordedSchema, endpoint = ":version/listen" ): Promise<DeepgramResponse<SyncPrerecordedResponse>> { try { let body; if (isUrlSource(source)) { body = JSON.stringify(source); } else { throw new DeepgramError("Unknown transcription source type"); } if (options !== undefined && "callback" in options) { throw new DeepgramError( "Callback cannot be provided as an option to a synchronous transcription. Use `transcribeUrlCallback` or `transcribeFileCallback` instead." ); } if (options?.keyterm?.length && !options.model?.startsWith("nova-3")) { throw new DeepgramError("Keyterms are only supported with the Nova 3 models."); } const requestUrl = this.getRequestUrl(endpoint, {}, { ...{}, ...options }); const result: SyncPrerecordedResponse = await this.post(requestUrl, body).then((result) => result.json() ); return { result, error: null }; } catch (error) { if (isDeepgramError(error)) { return { result: null, error }; } throw error; } } /** * Transcribes audio from a file asynchronously. * * @param source - The file source object containing the audio file to transcribe. * @param options - An optional `PrerecordedSchema` object containing additional options for the transcription. * @param endpoint - An optional endpoint string to use for the transcription request. * @returns A `DeepgramResponse` object containing the transcription result or an error. */ async transcribeFile( source: FileSource, options?: PrerecordedSchema, endpoint = ":version/listen" ): Promise<DeepgramResponse<SyncPrerecordedResponse>> { try { let body; if (isFileSource(source)) { body = source; } else { throw new DeepgramError("Unknown transcription source type"); } if (options !== undefined && "callback" in options) { throw new DeepgramError( "Callback cannot be provided as an option to a synchronous transcription. Use `transcribeUrlCallback` or `transcribeFileCallback` instead." ); } const requestUrl = this.getRequestUrl(endpoint, {}, { ...{}, ...options }); const result: SyncPrerecordedResponse = await this.post(requestUrl, body, { headers: { "Content-Type": "deepgram/audio+video" }, }).then((result) => result.json()); return { result, error: null }; } catch (error) { if (isDeepgramError(error)) { return { result: null, error }; } throw error; } } /** * Transcribes audio from a URL asynchronously. * * @param source - The URL source object containing the audio file to transcribe. * @param callback - The callback URL to receive the transcription result. * @param options - An optional `PrerecordedSchema` object containing additional options for the transcription. * @param endpoint - An optional endpoint string to use for the transcription request. * @returns A `DeepgramResponse` object containing the transcription result or an error. */ async transcribeUrlCallback( source: UrlSource, callback: CallbackUrl, options?: PrerecordedSchema, endpoint = ":version/listen" ): Promise<DeepgramResponse<AsyncPrerecordedResponse>> { try { let body; if (isUrlSource(source)) { body = JSON.stringify(source); } else { throw new DeepgramError("Unknown transcription source type"); } const requestUrl = this.getRequestUrl( endpoint, {}, { ...options, callback: callback.toString() } ); const result: AsyncPrerecordedResponse = await this.post(requestUrl, body).then((result) => result.json() ); return { result, error: null }; } catch (error) { if (isDeepgramError(error)) { return { result: null, error }; } throw error; } } /** * Transcribes audio from a file asynchronously. * * @param source - The file source object containing the audio file to transcribe. * @param callback - The callback URL to receive the transcription result. * @param options - An optional `PrerecordedSchema` object containing additional options for the transcription. * @param endpoint - An optional endpoint string to use for the transcription request. * @returns A `DeepgramResponse` object containing the transcription result or an error. */ async transcribeFileCallback( source: FileSource, callback: CallbackUrl, options?: PrerecordedSchema, endpoint = ":version/listen" ): Promise<DeepgramResponse<AsyncPrerecordedResponse>> { try { let body; if (isFileSource(source)) { body = source; } else { throw new DeepgramError("Unknown transcription source type"); } const requestUrl = this.getRequestUrl( endpoint, {}, { ...options, callback: callback.toString() } ); const result: AsyncPrerecordedResponse = await this.post(requestUrl, body, { headers: { "Content-Type": "deepgram/audio+video" }, }).then((result) => result.json()); return { result, error: null }; } catch (error) { if (isDeepgramError(error)) { return { result: null, error }; } throw error; } } } export { ListenRestClient as PrerecordedClient };