Class: OmniAI::Google::Transcribe
- Inherits:
-
Transcribe
- Object
- Transcribe
- OmniAI::Google::Transcribe
- Includes:
- TranscribeHelpers
- Defined in:
- lib/omniai/google/transcribe.rb
Overview
Defined Under Namespace
Modules: Model
Constant Summary collapse
- DEFAULT_MODEL =
Model::LATEST_SHORT
- DEFAULT_RECOGNIZER =
"_"
- CONTEXT =
Context.build do |context| # No custom deserializers needed - let base class handle parsing end
Instance Method Summary collapse
Instance Method Details
#process! ⇒ OmniAI::Transcribe::Transcription
35 36 37 38 39 40 41 |
# File 'lib/omniai/google/transcribe.rb', line 35 def process! if needs_async_recognition? process_async! else process_sync! end end |