VocalStack's API آپ کو آپ کی موجودہ ویب سائٹ یا بنیادی ڈھانچے میں Polyglot سیشنوں کو شامل کرنے کی اجازت دیتا ہے. آپ بھی API استعمال کر سکتے ہیں کہ VocalStack کے طاقتور AI نقل اور ترجمے کی صلاحیتوں کو استعمال کرنے کے لئے خود ساختہ ایپلیکیشنوں کو بنانے کے لئے.
دستاویزات پڑھیں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); });