VocalStack को API तपाईं आफ्नो अवस्थित वेबसाइट वा पूर्वाधार मा Polyglot सत्र एकीकृत गर्न अनुमति दिन्छ। तपाईं पनि VocalStack गरेको शक्तिशाली एआई प्रतिलिपि र अनुवाद क्षमताहरू लाभ अनुकूलन अनुप्रयोगहरू सिर्जना गर्न एपीआई प्रयोग गर्न सक्नुहुन्छ।.
मिसिलीकरण पढ्नुहोस्JavaScriptimport { Polyglot } from '@vocalstack/js-sdk'; const polyglot = new Polyglot({ apiKey: 'YOUR-API-KEY' }); const stream = await polyglot.getLiveSessionStream({ link: 'a-custom-url', password: 'password', // include only if the session has a password }); // Listen to any live transcriptions that are associated // with the polyglot session. stream.onData((response) => { const { data } = response; // The entire transcription object of the current transcription const transcription = data.activeTranscription; // An object with the transcription timeline console.log(transcription.timeline); });