You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Set the full transcript based on which transcription service was used
fileInfo.full_transcript =
this.transcription_service === "OpenAI"
? await this.combineWhisperChunks(fileInfo.whisper)
: fileInfo.deepgram.raw_transcript;
The user can accidentally clear the Transcription Service option, so we should explicitly check for a value and pre-throw an error if it's not there.
This line should be changed:
The user can accidentally clear the Transcription Service option, so we should explicitly check for a value and pre-throw an error if it's not there.
https://github.com/TomFrankly/pipedream-notion-voice-notes/blob/main/Notion-Voice-Notes.mjs#L2392C3-L2396C40
The text was updated successfully, but these errors were encountered: