fix(meeting-bot): expose negotiated node capability

This commit is contained in:
Vincent Koc
2026-07-31 10:50:42 +08:00
parent 9a14ee3ad2
commit 16c23377d0

View File

@@ -204,6 +204,9 @@ export function createNodeMeetingRealtimeAudioTransport(params: {
};
Object.defineProperty(transport, NODE_OUTPUT_GENERATION_CAPABILITY, {
get() {
return outputGenerationSupported;
},
set(value) {
outputGenerationSupported = value === true;
},