Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue with intro. #478

Merged
merged 1 commit into from
Apr 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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