You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want to get fancy, all submit job methods have overrides that allow specifying
75
75
[RevAiJobOptions](src/main/java/ai/rev/speechtotext/models/asynchronous/RevAiJobOptions.java) to configure job specific settings.
76
76
In RevAiJobOptions, you could include `metadata`, `callback_url`,
77
-
`skip_diarization`, `skip_punctuation`, `speaker_channels_count`, `custom_vocabularies`, `filter_profanity`and `remove_disfluencies` as optional parameters, these are described in the request body of
77
+
`skip_diarization`, `skip_punctuation`, `speaker_channels_count`, `custom_vocabularies`, `filter_profanity`, `remove_disfluencies`, and `delete_after_seconds` as optional parameters, these are described in the request body of
78
78
the [Submit Job](https://www.rev.ai/docs#operation/SubmitTranscriptionJob) endpoint.
79
79
80
80
### Checking your job's status
@@ -199,7 +199,7 @@ public class Listener implements RevAiWebSocketListener {
199
199
}
200
200
```
201
201
202
-
Now you will be able to connect and start the streaming session by calling the `streamingClient.connect()` method and passing in the Listener! You can supply an optional `SessionConfig` object, containing `metadata`, `filter_profanity`and `remove_disfluencies` as optional parameters, to the function in order to provide additional information for that session.
202
+
Now you will be able to connect and start the streaming session by calling the `streamingClient.connect()` method and passing in the Listener! You can supply an optional `SessionConfig` object, containing `metadata`, `filter_profanity`, `remove_disfluencies`, and `delete_after_seconds` as optional parameters, to the function in order to provide additional information for that session.
0 commit comments