feat(voice): implement real-time voice mode with cloud and local backends (#24174)

This commit is contained in:
Abhijit Balaji
2026-04-24 14:29:38 -07:00
committed by GitHub
parent 048bf6e514
commit 2e0641c83b
40 changed files with 2244 additions and 43 deletions
+14
View File
@@ -0,0 +1,14 @@
/**
* @license
* Copyright 2026 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { sync as commandExistsSync } from 'command-exists';
/**
* Checks if a binary is available in the system PATH.
*/
export function isBinaryAvailable(binaryName: string): boolean {
return commandExistsSync(binaryName);
}