OutputAudioConfig
import type { OutputAudioConfig } from "https://googleapis.deno.dev/v1/ces:v1.ts";OutputAudioConfig configures how the CES agent should synthesize outgoing audio responses.
interface OutputAudioConfig {
audioEncoding?:
| "AUDIO_ENCODING_UNSPECIFIED"
| "LINEAR16"
| "MULAW"
| "ALAW";
sampleRateHertz?: number;
}