A simple workflow that uses a function to process transcriptions.
Example
workflow = SimpleWorkflow.new(fn text ->
["You said: #{text}"]
end)
pipeline = Pipeline.new(workflow: workflow)
Summary
Functions
Create a new simple workflow.
Types
@type handler() :: (String.t() -> Enumerable.t())