ಪ್ರತಿ ತಿಂಗಳು
ತಿಂಗಳಿಗೆ ಬಿಲ್ ಮಾಡಲಾಗುತ್ತಿತ್ತುವಾರ್ಷಿಕವಾಗಿ ಬಿಲ್ ಮಾಡಲಾದ
VocalStack ನ API ಯಿಂದ ನೀವು Polyglot ಅಧಿವೇಶನಗಳನ್ನು ನಿಮ್ಮ ಪ್ರಸ್ತುತ ಜಾಲತಾಣ ಅಥವಾ ಮೂಲಸೌಕರ್ಯಕ್ಕೆ ಸೇರಿಸಬಹುದು. VocalStack ನ ಶಕ್ತಿಶಾಲಿ AI ಲಿಪ್ಯಂತರ ಮತ್ತು ಭಾಷಾಂತರ ಸಾಮರ್ಥ್ಯಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಗ್ರಾಹಕೀಯ ಅನ್ವಯಗಳನ್ನು ರಚಿಸಲು ನೀವು API ಅನ್ನು ಬಳಸಬಹುದು. Name.
ದಸ್ತಾವೇಜನ್ನು ಓದಿ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); });