Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@ fun RunAnywhere.synthesizeStream(
close()
return@callbackFlow
}
// Phase 2 must have completed before the lifecycle query below, or a
// voice that is present is reported as missing. synthesize() and
// transcribeStream() already gate on this, as does Swift's
// synthesizeStream.
ensureServicesReady()

// Mirror synthesize(): query ModelLifecycle (the canonical source of
// truth) instead of CppBridgeTTS's own handle. Swift's
Expand Down
Loading