Skip to content

Commit

Permalink
Merge pull request #478 from symblai/web-sdk-doc-fixes
Browse files Browse the repository at this point in the history
Fix issue with intro.
  • Loading branch information
Adam Voliva authored Apr 12, 2022
2 parents 2f95515 + ecff5c4 commit d0bccd2
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions docs/web-sdk/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@ The Web SDK is currently available with Symbl’s Streaming and Subscribe APIs.
### Supported Browsers
The following web browser supported with the Web SDK are given below:

Operating System | Chrome | Edge | Firefox | Brave| ------
Operating System | Chrome | Edge | Firefox | Safari | ------
---------- | ------- | ------- | ------
macOS | ✅ | ✅ | ✅ | - |
Windows | ✅ | ✅ | ✅ | ✅ |
Linux| ✅ | - | ✅ | - |
macOS | ✅ | - | ✅ | - | ✅
Windows | ✅ | ✅ | ✅ | | ✅
Linux| ✅ | - | ✅ | - | -


:::caution note
Currently, the support for Safari browser is not available.
Currently, the OPUS encoder support in Safari browser is not available.
:::

### Supported Languages
Expand Down Expand Up @@ -85,20 +86,19 @@ You can import the Web SDK in ES5 and ES6 syntax:
<TabItem value="es5">

```js
var Symbl = require('@symblai/symbl-web-sdk');
var symbl = Symbl({
const {Symbl} = require('@symblai/symbl-web-sdk');
const symbl = Symbl({
accesssToken: '<YOUR ACCESS TOKEN>'
});
});
```

</TabItem>

<TabItem value="es6">

```js
import Symbl from '@symblai/symbl-web-sdk';
var symbl = Symbl({
import { Symbl } from '@symblai/symbl-web-sdk';
const symbl = Symbl({
accesssToken: '<YOUR ACCESS TOKEN>'
});

Expand All @@ -115,7 +115,7 @@ The following code shows an example configuration for Web SDK. All fields are op
disconnectOnStopRequest: false,
disconnectOnStopRequestTimeout: 1800,
noConnectionTimeout: 900,
insightTypes: ["follow_up", "action_item"],
insightTypes: ["follow_up", "action_item", "question"],
config: {
meetingTitle: "Mic Test", // Name for meeting
confidenceThreshold: 0.7, //Minimum confidence score set for the API to consider an insight as valid.
Expand Down

0 comments on commit d0bccd2

Please sign in to comment.