Feature/speech to text#82
Conversation
|
@claude please review this PR |
|
Claude finished @SamuelBrucksch's task in 2m 43s —— View job PR Review: Feature/speech-to-text
SummaryThis PR extracts voice input functionality from Architecture & Design — Looks Good
Issues & Suggestions1. iOS: Thread safety of
|
…ith VoiceInputResult
|
@claude please review |
|
Claude finished @SamuelBrucksch's task in 5m 19s —— View job PR Review: Feature/speech-to-text
I note the previous Claude review was addressed in part — the Issues1. iOS: STT error handler still missing
|
|
No significant issues found. |
|
@SamuelBrucksch I fixed all of them except for 2, the permission request is fine like this imho. STT isn't a worse then raw mic access anyways. |
| title="record audio" | ||
| onPress={async () => { | ||
| const granted = await HybridAutoPlay.requestVoiceInputPermission(); | ||
| const granted = await HybridVoice.requestVoiceInputPermission(); |
There was a problem hiding this comment.
just minor cosmetics, but for consistency you could use the same code style as in AutoTemplate.ts -> requestVoiceInputPermission.then(() => ...)
This PR adds speech to text support