Careless whisper (#6877)

Co-authored-by: Douwe Osinga <douwe@squareup.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Douwe Osinga
2026-02-03 12:54:29 +01:00
committed by GitHub
parent 3d0bb3c670
commit 1373d9c5f9
25 changed files with 118541 additions and 485 deletions
+2 -2
View File
@@ -168,7 +168,7 @@ export type AnalyticsEvent =
| {
name: 'input_voice_dictation';
properties: {
action: 'start' | 'stop' | 'transcribed' | 'error';
action: 'start' | 'stop' | 'transcribed' | 'error' | 'auto_submit';
duration_seconds?: number;
error_type?: string;
};
@@ -593,7 +593,7 @@ export function trackFileAttached(fileType: 'file' | 'directory'): void {
}
export function trackVoiceDictation(
action: 'start' | 'stop' | 'transcribed' | 'error',
action: 'start' | 'stop' | 'transcribed' | 'error' | 'auto_submit',
durationSeconds?: number,
errorType?: string
): void {