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

DC-65 #521

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open

DC-65 #521

Show file tree
Hide file tree
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
10 changes: 9 additions & 1 deletion docs/javascript-sdk/tutorials/push-audio-get-realtime-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ In this guide you will learn the following:
* [Test](#test)
* [Grabbing the Conversation ID](#grabbing-the-conversation-id)
* [Full Code Sample](#full-code-sample)
* [Query Params](#query-params)

## Getting started

Expand Down Expand Up @@ -70,7 +71,6 @@ const micInstance = mic({

## Initialize SDK


You can get the `appId` and `appSecret` values from the [Symbl Platform](https://platform.symbl.ai).

```javascript
Expand Down Expand Up @@ -707,3 +707,11 @@ const micInstance = mic({
}
})();
```
### Query Params

Following are the optional query parameters that you can pass in this API:

Parameter | Required | Value |Description |
--------- | --------- | ------- | -------
```verbose``` | Optional | true | Gives you word level timestamps and score of each sentence.
```sentiment```| Optional | true | Give you [Sentiment Analysis](/docs/concepts/sentiment-analysis) on each message.
9 changes: 9 additions & 0 deletions docs/streamingapi/code-snippets/receive-live-topics.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,15 @@ If successful you should receive a response in the console.

<a name="ontopicresponse"></a>

### Query Params

Following are the optional query parameters that you can pass in this API:

Parameter | Required | Value |Description |
--------- | --------- | ------- | -------
```verbose``` | Optional | true | Gives you word level timestamps and score of each sentence.
```sentiment```| Optional | true | Give you [Sentiment Analysis](/docs/concepts/sentiment-analysis) on each message.

### Handlers Reference

* `handlers`: This object has the callback functions for different events
Expand Down
9 changes: 8 additions & 1 deletion docs/streamingapi/tutorials/get-realtime-transcription.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ In this guide you will learn the following:
* [Test](#test)
* [Grabbing the Conversation ID](#grabbing-the-conversation-id)
* [Full Code Sample](#full-code-sample)

* [Query Params](#query-params)

## Getting Started

Expand Down Expand Up @@ -376,4 +376,11 @@ handleSuccess(stream);

If you properly implemented the code, the code runs in the browser without anything else.

### Query Params

Following are the optional query parameters that you can pass in this API:

Parameter | Required | Value |Description |
--------- | --------- | ------- | -------
```verbose``` | Optional | true | Gives you word level timestamps and score of each sentence.
```sentiment```| Optional | true | Give you [Sentiment Analysis](/docs/concepts/sentiment-analysis) on each message.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ You must make sure your Zoom call allows phone dial-in for this example to work
* [Grabbing the Conversation ID](#grabbing-the-conversation-id)
* [Full Code Sample](#full-code-sample)
* [Test](#test)
* [Query Params](#query-params)
* [Conclusion](#conclusion)


Expand Down Expand Up @@ -275,6 +276,14 @@ Run your code:
```bash
$ node index.js
```
### Query Params

Following are the optional query parameters that you can pass in this API:

Parameter | Required | Value |Description |
--------- | --------- | ------- | -------
```verbose``` | Optional | true | Gives you word level timestamps and score of each sentence.
```sentiment```| Optional | true | Give you [Sentiment Analysis](/docs/concepts/sentiment-analysis) on each message.

## Conclusion

Expand Down