Implemented the AudioTranscribingService service in the Sample app target.

This commit is contained in:
2026-07-03 22:13:16 +02:00
parent 64f85277cb
commit d7d50492e6
3 changed files with 84 additions and 2 deletions
+2 -2
View File
@@ -8,11 +8,11 @@ struct ContentView: View {
// MARK: Body
/// The content of the view: the recording feature's view, attached to the microphone-backed recording service and the simulated transcribing service.
/// The content of the view: the recording feature's view, attached to the microphone-backed recording service and the on-device speech transcribing service.
var body: some View {
RecordingView(
recorder: AudioRecordingService(),
transcriber: SimulatedTranscribingService()
transcriber: AudioTranscribingService()
)
}